JS: Pass opts in to_human_full().

This commit is contained in:
Arthur Britto
2013-02-02 02:46:42 -08:00
parent cec8b12a49
commit 4e526c78e6

View File

@@ -836,8 +836,8 @@ Amount.prototype.to_human_full = function (opts) {
opts = opts || {};
var a = this.to_human(opts);
var c = this._currency.to_human(opts);
var i = this._issuer.to_json();
var c = this._currency.to_human();
var i = this._issuer.to_json(opts);
var o;