From 169244ed1a2c784be2bff16d5b504e7a332d0831 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Wed, 19 Jun 2013 15:15:26 -0400 Subject: [PATCH] navigator.js: omit unused borderWidth from func args --- src/navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigator.js b/src/navigator.js index 80d4a962..60c775f5 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -209,7 +209,7 @@ $.extend( $.Navigator.prototype, $.EventHandler.prototype, $.Viewer.prototype, { style.width = Math.max( width, 0 ) + 'px'; style.height = Math.max( height, 0 ) + 'px'; - }( this.displayRegion.style, this.borderWidth)); + }( this.displayRegion.style )); } },