-
30 Sep 2010 6:58 PM #1
[FIXED] In Ext.util.JSON a "/' mistake Only ext-all-debug.js (Ext JS 3.2.1)
[FIXED] In Ext.util.JSON a "/' mistake Only ext-all-debug.js (Ext JS 3.2.1)
In ext-all-debug*.js(Ext JS 3.2.1),I found a mistake at Ext.util.JSON doDecode Method.
ext-all-debug.js
8272 doDecode = function(json){
8273 return eval("(" + json + ')');
8274 },
ext-all-debug-w-comments.js
12498 doDecode = function(json){
12499 return eval("(" + json + ')');
12500 },
The line:
return eval("(" + json + ')'));
should be
return eval("(" + json + ")"));
st44100
-
4 Oct 2010 11:41 AM #2Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,651
- Vote Rating
- 14
Updated to use quotes more a more uniform manner.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FIXED-713] ext.slider (error) to be corrected in ext-all.js/ext-all-debug.js
By jvandemerwe in forum Ext 3.x: BugsReplies: 4Last Post: 12 Mar 2010, 5:02 PM -
Ext.util.JSON.decode() Fail to handle JSON string if obtained trough Ext.ajax.request
By ImShogun in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 13 Aug 2009, 8:49 AM -
Ext.util.JSON.decode(form,action) - Ext.Msg.show()
By Jack_S in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 6 Feb 2009, 3:44 AM -
short cut for Ext.Ajax.request + Ext.util.JSON.decode
By fetchinson in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 23 Jan 2008, 11:14 PM -
[SOLVED][ext ver 1 a2]Ext.util.JSON.decode not working in IE
By kimu in forum Ext 1.x: BugsReplies: 2Last Post: 6 Mar 2007, 12:33 PM


Reply With Quote