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
I ran into some strange list flattening behavior when objects were passed over the channel, and tracked it down to Prototype changing the behavior of JSON.stringify which is discussed here. The app I am working on is injected into pages outside of my control, so I need to make sure that Prototype's JSON.stringify isn't being used.
My question is, does it make sense for jschannel to make sure that this broken JSON.stringify from Prototype isn't being used accidentally, to save other people the heartache of tracking down this problem? Or is this something that I should do in my app?
The text was updated successfully, but these errors were encountered:
I ran into some strange list flattening behavior when objects were passed over the channel, and tracked it down to Prototype changing the behavior of
JSON.stringify
which is discussed here. The app I am working on is injected into pages outside of my control, so I need to make sure that Prototype'sJSON.stringify
isn't being used.My question is, does it make sense for jschannel to make sure that this broken
JSON.stringify
from Prototype isn't being used accidentally, to save other people the heartache of tracking down this problem? Or is this something that I should do in my app?The text was updated successfully, but these errors were encountered: