Vivid-Casper/assets/js/index.js

18 lines
346 B
JavaScript
Raw Normal View History

/**
* Main JS file for Casper behaviours
*/
/*globals jQuery, document */
(function ($) {
"use strict";
2013-08-20 16:53:02 +00:00
$(document).ready(function(){
// On the home page, move the blog icon inside the header
// for better relative/absolute positioning.
$("#blog-icon").prependTo("#site-head");
});
2013-08-20 16:53:02 +00:00
}(jQuery));