JS: Pass opts in to_human_full().

This commit is contained in:
Arthur Britto
2013-02-02 02:46:42 -08:00
committed by Stefan Thomas
parent 70d556b4a1
commit 2f0d4f5461

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;