From 268e7c605aff3a0f8b45b9e73a2b22afc4fb2a85 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Tue, 12 Nov 2013 08:39:31 +0000 Subject: [PATCH] add semicolons between the multipme included javascript files - removes certain ambigious situations --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 23923560..3e5e6213 100755 --- a/build.py +++ b/build.py @@ -141,7 +141,7 @@ def loaderImage(var): return 'data:image/png;base64,{0}'.format(base64.encodestring(open(fn, 'rb').read()).decode('utf8').replace('\n', '')) def loadCode(ignore): - return '\n\n'.join(map(readfile, sorted(glob.glob('code/*.js')))) + return '\n\n;\n\n'.join(map(readfile, sorted(glob.glob('code/*.js')))) def extractUserScriptMeta(var):