navigator.js: omit unused borderWidth from func args

This commit is contained in:
Chris Adams 2013-06-19 15:15:26 -04:00
parent 0d09183159
commit 169244ed1a

View File

@ -209,7 +209,7 @@ $.extend( $.Navigator.prototype, $.EventHandler.prototype, $.Viewer.prototype, {
style.width = Math.max( width, 0 ) + 'px'; style.width = Math.max( width, 0 ) + 'px';
style.height = Math.max( height, 0 ) + 'px'; style.height = Math.max( height, 0 ) + 'px';
}( this.displayRegion.style, this.borderWidth)); }( this.displayRegion.style ));
} }
}, },