|
|
@ -5,19 +5,25 @@ define('admin/settings', ['uploader', 'mousetrap'], function (uploader, mousetra
|
|
|
|
var Settings = {};
|
|
|
|
var Settings = {};
|
|
|
|
|
|
|
|
|
|
|
|
Settings.populateTOC = function () {
|
|
|
|
Settings.populateTOC = function () {
|
|
|
|
$('.settings-header').each(function () {
|
|
|
|
var headers = $('.settings-header');
|
|
|
|
var header = $(this).text();
|
|
|
|
|
|
|
|
var anchor = header.toLowerCase().replace(/ /g, '-').trim();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(this).prepend('<a name="' + anchor + '"></a>');
|
|
|
|
if (headers.length > 1) {
|
|
|
|
$('.section-content ul').append('<li><a href="#' + anchor + '">' + header + '</a></li>');
|
|
|
|
headers.each(function () {
|
|
|
|
});
|
|
|
|
var header = $(this).text();
|
|
|
|
|
|
|
|
var anchor = header.toLowerCase().replace(/ /g, '-').trim();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(this).prepend('<a name="' + anchor + '"></a>');
|
|
|
|
|
|
|
|
$('.section-content ul').append('<li><a href="#' + anchor + '">' + header + '</a></li>');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
var scrollTo = $('a[name="' + window.location.hash.replace('#', '') + '"]');
|
|
|
|
var scrollTo = $('a[name="' + window.location.hash.replace('#', '') + '"]');
|
|
|
|
if (scrollTo.length) {
|
|
|
|
if (scrollTo.length) {
|
|
|
|
$('html, body').animate({
|
|
|
|
$('html, body').animate({
|
|
|
|
scrollTop: (scrollTo.offset().top) + 'px',
|
|
|
|
scrollTop: (scrollTo.offset().top) + 'px',
|
|
|
|
}, 400);
|
|
|
|
}, 400);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$('.content-header').parents('.row').remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|