Vivid-Casper/assets/js/index.js
2013-09-02 22:59:52 +01:00

18 lines
348 B
JavaScript

/**
* Main JS file for Casper behaviours
*/
/*globals jQuery, document */
(function ($) {
"use strict";
$(document).ready(function(){
// On the home page, move the blog icon inside the header
// for better relative/absolute positioning.
//$("#blog-logo").prependTo("#site-head-content");
});
}(jQuery));