Add missing semicolon

This commit is contained in:
Toby Zerner 2015-09-29 14:29:26 +09:30
parent 5382d0ce1a
commit 0db4708ef9

View File

@ -78,7 +78,7 @@ export default function boot(app) {
// Initialize FastClick, which makes links and buttons much more responsive on
// touch devices.
$(() => {
FastClick.attach(document.body)
FastClick.attach(document.body);
$('body').addClass('ontouchstart' in window ? 'touch' : 'no-touch');
});