060520 Theme optimization and mobile layout changes
This commit is contained in:
@ -129,6 +129,15 @@ $('body').on('click', '.gotop a', function(e) {
|
||||
return false;
|
||||
});
|
||||
|
||||
$('body').on('click', '.topbar:not(a)', function(e) {
|
||||
if(e.target !== e.currentTarget) return;
|
||||
e.preventDefault();
|
||||
$('html, body').animate({
|
||||
scrollTop: 0
|
||||
}, 800);
|
||||
return false;
|
||||
});
|
||||
|
||||
$('body').on('click', '#loader', function() {
|
||||
var cnt = $("#loaded").contents();
|
||||
// $("#content").prepend(cnt);
|
||||
|
Reference in New Issue
Block a user