DescriptionHTML pages containing json Concat Js throws error "Expression, variable excepted" while rending in IE. This error is due to extra comma present in JSON map in concat javascript. For e.g-> Currently json map looks like
json = {"http://url/1.js":"var foo=1",}
Because of comma present at last, IE throws error. After applying this patch, json map looks like,
json = {"http://url/1.js":"var foo=1"}
Extra comma is removed.
Patch Set 1 #Patch Set 2 : Refactoring Code #
Total comments: 2
Patch Set 3 : Addressing Comment #
Total comments: 2
Patch Set 4 : Addressing Comment #
MessagesTotal messages: 11
|
||||||||||||||||||||||||||||