From 79cd2ad461cc219cf64f1a758aaab3a731be9baf Mon Sep 17 00:00:00 2001 From: Kevin Dungs Date: Thu, 7 Aug 2014 10:44:45 +0200 Subject: [PATCH] I'm an idiot. .attach not .apply... --- js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index 25239c2..1166253 100644 --- a/js/ui.js +++ b/js/ui.js @@ -8,7 +8,7 @@ var UI = (function () { * Also introduce FastClick for faster clicking on mobile. */ $(function() { - FastClick.apply(document.body); + FastClick.attach(document.body); var offset = 0; var h = $(window).height();