We had casting removed for the cat demo. We need to revisit this.
authorphasefx <phasefx@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 21 Mar 2005 14:53:06 +0000 (14:53 +0000)
committerphasefx <phasefx@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 21 Mar 2005 14:53:06 +0000 (14:53 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@248 9efc2488-bf62-4759-914b-345cdb29e865

src/javascript/JSON.js

index 9145267..72f457e 100644 (file)
@@ -22,8 +22,8 @@ function Cast (obj, class_constructor) {
 }
 
 function JSON2js (json) {
-       json = String(json).replace( /\/\*--\s*S\w*?\s*?\s+\w+\s*--\*\//g, 'Cast(');
-       json = String(json).replace( /\/\*--\s*E\w*?\s*?\s+(\w+)\s*--\*\//g, ', "$1")');
+       //json = String(json).replace( /\/\*--\s*S\w*?\s*?\s+\w+\s*--\*\//g, 'Cast(');
+       //json = String(json).replace( /\/\*--\s*E\w*?\s*?\s+(\w+)\s*--\*\//g, ', "$1")');
        var obj;
        if (json != '') {
                eval( 'obj = ' + json );