Move gateways option to opts instead of config.

This commit is contained in:
Arthur Britto
2013-02-17 21:07:09 -08:00
parent 676fb5462a
commit fbc619c2e3
2 changed files with 4 additions and 4 deletions

View File

@@ -20,8 +20,8 @@ var UInt = function () {
this._value = NaN;
};
UInt.json_rewrite = function (j) {
return this.from_json(j).to_json();
UInt.json_rewrite = function (j, opts) {
return this.from_json(j).to_json(opts);
};
// Return a new UInt from j.