diff --git a/assets/css/main.css b/assets/css/main.css index b96b032..868fb5d 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -2415,7 +2415,6 @@ body { display: -webkit-flex; display: -ms-flex; display: flex; - flex-direction: column; -moz-justify-content: space-between; -webkit-justify-content: space-between; -ms-justify-content: space-between; diff --git a/assets/js/main.js b/assets/js/main.js index 5afe8db..d193fc7 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -45,21 +45,21 @@ $('#blog').load('blog.html'); $('#readBlog').on("click", function() { - window.location.href = "blog.html"; + window.location = "http://arjunpatel.me/blog.html"; }); $('.readMore').on("click", function() { var whichBlog = $(this).attr('id'); console.log("Loading vlog: " + whichBlog); - window.location.href = "http://arjunpatel.me/blogs/" + whichBlog + ".html"; + window.location = "http://arjunpatel.me/blogs/" + whichBlog + ".html"; }); $('#goToMain').on("click", function() { - window.location.href = "http://arjunpatel.me/index.html"; + window.location = "http://arjunpatel.me/index.html"; }); $('#goToBlogs').on("click", function() { - window.location.href = "http://arjunpatel.me/blog.html"; + window.location = "http://arjunpatel.me/blog.html"; }); })(jQuery);