Hi, While creating my HTML5+JavaScript+CSS WebApp with Cordova 3.4.0 I found a wierd, but making sense, bug.
When you have a JavaScript code like:
var obj = {
'continue': function(){ /* Stuff... */ }
};
// It crashes in the simulators.
obj.continue();
// Works fine.
obj['continue']();
I saw the JIRA issue tracker in the Cordova main page but I don't want to
create an account and I'm not sure where to report it.
Att,
Danillo
