mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2024-11-10 10:28:04 +00:00
85b74ea393
* New Helpers * Updated Helpers * New reponsive header styles * New global blog icon * Responsive styles adjustments
18 lines
346 B
JavaScript
18 lines
346 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-icon").prependTo("#site-head");
|
|
|
|
});
|
|
|
|
}(jQuery)); |