js/comm/values/values.js in rsence-pre-2.2.0.38 vs js/comm/values/values.js in rsence-pre-2.2.2.0
- old
+ new
@@ -64,11 +64,11 @@
set: function(_id,_data){
this.values[_id].set(_data);
},
/** = Description
- * Sets and decodes the +_data+. Main value setter interface
+ * Sets and decodes the +_data+. Main value setter interface
* for the server representation of +HValue+.
*
* = Parameters
* +_id+:: The unique id of the +HValue+ instance (set by the server)
* +_data+:: The new data from the server, to be decoded.
@@ -326,10 +326,10 @@
try{
return JSON.stringify( _obj );
}
catch(e){
console.log('invalid json:',_obj);
- return "{}"
+ return "{}";
}
},
/** = Description