Closed nicolasQbt closed 11 years ago
Thanks for the report. I'll look into it. I thought the quote character would have been URI encoded.
Under what platform and browser did that work?
When I try this on OSX 10.8 I still get errors.
It worked for me if I escaped message
before passing to encodeURIComponent
.
@nicolasQbt can you please verify that my submitted fix works for you as well?
I test it under Windows 7 (browser IE) and when I escape message
before encodeURIComponent
it does not work.
I have to escape it after the encodeURIComponent
.
I've been using Windows 7 IE10 and I cannot reproduce that. I also tried compatibility modes, IE 8 and 9 - but adding slashes before encodeURIComponent
is the only way it worked for me.
What IE version do you have?
Sorry, I upload your last version now, and everything is ok with your correction. encodeURIComponent( message.add_slashes() );
work perfectly.
Thank you! :+1:
I found a bug with the listbox. If I add an item with an apostrophe or quote (this char ' ) and when I select it, this error appear :
The encodeURIComponent method don't slash the quote char. I add this method to correct the bug
In bridge.js, line 113 :