add semicolons between the multipme included javascript files - removes certain ambigious situations

This commit is contained in:
Jon Atkins 2013-11-12 08:39:31 +00:00
parent 4c10bb9377
commit 268e7c605a

View File

@ -141,7 +141,7 @@ def loaderImage(var):
return 'data:image/png;base64,{0}'.format(base64.encodestring(open(fn, 'rb').read()).decode('utf8').replace('\n', '')) return 'data:image/png;base64,{0}'.format(base64.encodestring(open(fn, 'rb').read()).decode('utf8').replace('\n', ''))
def loadCode(ignore): 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): def extractUserScriptMeta(var):