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();
}, 10 * 1000);
//トップに戻る
$("nav").click(function(e) {
$("body,html").animate(
{
scrollTop: 0
},
150
);
return false;
});
$("nav")
.not("a")
.click(function(e) {
$("body,html").animate(
{
scrollTop: 0
},
150
);
return false;
});
});
function makeFullScreen(full) {