From e52bbd0b3a8547e35006fcf16f2f9025340f0325 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 15 Feb 2013 16:22:45 -0800 Subject: [PATCH] 2 space indents -> tabs --- src/layer/tile/TileLayer.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/layer/tile/TileLayer.js b/src/layer/tile/TileLayer.js index d17b6184..00581b96 100644 --- a/src/layer/tile/TileLayer.js +++ b/src/layer/tile/TileLayer.js @@ -482,12 +482,12 @@ L.TileLayer = L.Class.extend({ tile.src = this.getTileUrl(tilePoint); }, - _tileLoaded: function () { - this._tilesToLoad--; - if (!this._tilesToLoad) { - this.fire('load'); - } - }, + _tileLoaded: function () { + this._tilesToLoad--; + if (!this._tilesToLoad) { + this.fire('load'); + } + }, _tileOnLoad: function () { var layer = this._layer; @@ -518,8 +518,8 @@ L.TileLayer = L.Class.extend({ this.src = newUrl; } - layer._tileLoaded(); - } + layer._tileLoaded(); + } }); L.tileLayer = function (url, options) {