mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
/*globals document, location, jQuery */
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
var changePage = function (e) {
|
|
var newPage = $(this).children('a').attr('href');
|
|
|
|
e.preventDefault();
|
|
$('.settings-menu .active').removeClass('active');
|
|
location.hash = $(this).attr('class'); // Placed here so never gets given the active attribute.
|
|
$(this).addClass('active');
|
|
|
|
$('.settings-content').fadeOut().delay(250);
|
|
$(newPage).fadeIn();
|
|
|
|
};
|
|
|
|
$(document).ready(function () {
|
|
if (location.hash) {
|
|
var page = $(".settings-menu li." + location.hash.replace('#', '')),
|
|
newPage = page.children('a').attr('href');
|
|
$('.settings-menu .active').removeClass('active');
|
|
page.addClass('active');
|
|
|
|
$('.settings-content').hide().delay(250);
|
|
$(newPage).show();
|
|
}
|
|
$('.settings-menu li').on('click', changePage);
|
|
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-grey'
|
|
});
|
|
});
|
|
|
|
}(jQuery)); |