scroll to the actual subsection in the ACP when clicking on links pointing to that hash

v1.18.x
psychobunny 8 years ago
parent 0e219a8c58
commit e8c40c8dc6

@ -17,6 +17,13 @@ define('admin/settings', ['uploader'], function (uploader) {
$(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('#', '') + '"]');
if (scrollTo.length) {
$('html, body').animate({
scrollTop: (scrollTo.offset().top) + 'px',
}, 400);
}
};
Settings.prepare = function (callback) {

Loading…
Cancel
Save