Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2012-12-05 17:45:29 +01:00
commit 9b711a6e42

View File

@ -3669,6 +3669,18 @@ $(function () {
}
});
/**
* Scrolls the page to the top if clicking the serverinfo bar
*/
$(function () {
$(document).delegate("#serverinfo", "click", function () {
$('html, body').animate({scrollTop: 0}, 'fast');
});
$(document).delegate("#serverinfo > *", "click", function (e) {
e.stopPropagation();
});
});
/**
* Watches checkboxes in a form to set the checkall box accordingly
*/