From bab302c8fcdf3bcb069a788e92880349efc5bf64 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 3 Jan 2014 07:58:07 +0000 Subject: [PATCH] refactor(html) index: add path vars --- html/index.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/html/index.html b/html/index.html index c6bfa37d..e55efe90 100644 --- a/html/index.html +++ b/html/index.html @@ -34,13 +34,15 @@ 'use strict'; var script, + lib = 'lib/', + client = lib + 'client/', files = [ - 'lib/client/key.js', - 'lib/client/listeners.js', - 'lib/client.js', - 'lib/client/dom.js', - 'lib/cloudfunc.js', - 'lib/util.js' + client + 'key.js', + client + 'listeners.js', + lib + 'client.js', + client + 'dom.js', + lib + 'cloudfunc.js', + lib + 'util.js' ], url = getJoinURL(files);