From 4e526c78e6eab86b6bf1d6138ad02ab36b7a5b2b Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sat, 2 Feb 2013 02:46:42 -0800 Subject: [PATCH] JS: Pass opts in to_human_full(). --- src/js/amount.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/amount.js b/src/js/amount.js index 201b3af34d..a690616d8e 100644 --- a/src/js/amount.js +++ b/src/js/amount.js @@ -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;