Lint fixes

pull/345/head
cagataycivici 2020-05-13 18:04:28 +03:00
parent 5b5570979e
commit 45b948da88
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ export default {
if (ua.indexOf('MSIE ') > 0 || ua.indexOf('Trident/') > 0) { if (ua.indexOf('MSIE ') > 0 || ua.indexOf('Trident/') > 0) {
return true; return true;
} }
return false; return false;
} }
}, },

View File

@ -162,7 +162,7 @@ Vue.component('Galleria', Galleria);
Vue.component('CodeHighlight', CodeHighlight); Vue.component('CodeHighlight', CodeHighlight);
router.beforeEach(function (to, from, next) { router.beforeEach(function (to, from, next) {
window.scrollTo(0, 0); window.scrollTo(0, 0);
next(); next();
}); });