mapgears / scribeui

http://scribeui.org
MIT License
28 stars 15 forks source link

ScribeUI 0.3 doesn't work on Chrome #17

Closed juliensam closed 11 years ago

juliensam commented 11 years ago

There's a JS error in Chrome with scribe 0.3.

juliensam commented 11 years ago

There was a JS bug in the plugin code.

Uncaught SyntaxError: Unexpected token =  
in functions.js line 560

This was caused by options= {} which seems to be invalid in function definition. I replaced this by:

options = (options) ? options : {};