18 lines
348 B
JavaScript
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)); |