You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The beta2 still has the parse error bug at the lines with $attr.class on Android 2.3.
04-29 16:37:55.937: D/CordovaLog(1242): file:///android_asset/www/Ionic-1.0.0-beta2/js/ionic.bundle.js: Line 36885 : SyntaxError: Parse error
04-29 16:37:55.937: E/Web Console(1242): SyntaxError: Parse error at file:///android_asset/www/Ionic-1.0.0-beta2/js/ionic.bundle.js:36885
The problem is coming from the ".class" property, as class is a future reserved word. You can change the dot notation to square bracket notation : ['class']
The text was updated successfully, but these errors were encountered:
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
Hi!
The beta2 still has the parse error bug at the lines with $attr.class on Android 2.3.
04-29 16:37:55.937: D/CordovaLog(1242): file:///android_asset/www/Ionic-1.0.0-beta2/js/ionic.bundle.js: Line 36885 : SyntaxError: Parse error
04-29 16:37:55.937: E/Web Console(1242): SyntaxError: Parse error at file:///android_asset/www/Ionic-1.0.0-beta2/js/ionic.bundle.js:36885
The problem is coming from the ".class" property, as class is a future reserved word. You can change the dot notation to square bracket notation : ['class']
The text was updated successfully, but these errors were encountered: