From 11c26c801494029e11edd73d0dab4b425b99cd73 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 13 May 2015 03:54:56 -0400 Subject: [PATCH] refactor(listeners) Util.exec(func) -> func() --- lib/client/listeners.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/client/listeners.js b/lib/client/listeners.js index 0505246c..5665927d 100644 --- a/lib/client/listeners.js +++ b/lib/client/listeners.js @@ -52,8 +52,7 @@ var Util, DOM, CloudFunc, CloudCmd; func = clickFuncs[id]; - Util.exec(func); - + func(); }); };