setting booleans the easy way

This commit is contained in:
thejohnhoffer 2016-11-03 17:11:22 -04:00
parent bac2cab8e9
commit 1baf086e1b

View File

@ -781,7 +781,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
* @param {Boolean} whether to load tiles without drawing in this tiledImage. * @param {Boolean} whether to load tiles without drawing in this tiledImage.
*/ */
setPreload: function(preload) { setPreload: function(preload) {
this.preload = Boolean(preload); this.preload = (true == preload);
this._needsDraw = true; this._needsDraw = true;
}, },