From 4f3f7f4a3606a6cd85b0959f40a188386ea70478 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 17 Nov 2014 09:49:48 -0500 Subject: [PATCH] refactor(client) exec.with --- lib/client.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 5caf2f8a..ffde50a7 100644 --- a/lib/client.js +++ b/lib/client.js @@ -128,7 +128,9 @@ var Util, DOM, CloudFunc, join; Util.exec.series([ initModules, baseInit, - Util.exec.with(CloudCmd.route, location.hash) + function() { + CloudCmd.route(location.hash); + } ]); },