src/js/utils.js
branchpopcorn-port
changeset 60 ffc038fdb8f1
parent 31 cbb1425bc769
child 73 a8192c57c87d
equal deleted inserted replaced
59:69b9772a8f1a 60:ffc038fdb8f1
     9 		IriSP.traceNum += 1;
     9 		IriSP.traceNum += 1;
    10 		IriSP.jQuery( "<div>"+IriSP.traceNum+" - "+msg+" : "+value+"</div>" ).appendTo( "#Ldt-output" );
    10 		IriSP.jQuery( "<div>"+IriSP.traceNum+" - "+msg+" : "+value+"</div>" ).appendTo( "#Ldt-output" );
    11 	}
    11 	}
    12 };
    12 };
    13 
    13 
       
    14 /* for ie compatibility
       
    15 if (Object.prototype.__defineGetter__&&!Object.defineProperty) {
       
    16    Object.defineProperty=function(obj,prop,desc) {
       
    17       if ("get" in desc) obj.__defineGetter__(prop,desc.get);
       
    18       if ("set" in desc) obj.__defineSetter__(prop,desc.set);
       
    19    }
       
    20 }
       
    21 */