edit: except link button

This commit is contained in:
harukin 2019-01-22 16:59:45 +09:00
parent f0600d49a6
commit 649834c64f

View File

@ -101,15 +101,17 @@ $(document).ready(function() {
checkNotify(); checkNotify();
}, 10 * 1000); }, 10 * 1000);
//トップに戻る //トップに戻る
$("nav").click(function(e) { $("nav")
$("body,html").animate( .not("a")
{ .click(function(e) {
scrollTop: 0 $("body,html").animate(
}, {
150 scrollTop: 0
); },
return false; 150
}); );
return false;
});
}); });
function makeFullScreen(full) { function makeFullScreen(full) {