mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
fixed scope on _lastTileUrl
This commit is contained in:
parent
4e017c9f95
commit
a068e05cd9
@ -485,9 +485,9 @@ define([
|
||||
*/
|
||||
estimateTileSize : function(callback)
|
||||
{
|
||||
if(_lastTileUrl)
|
||||
if(this._lastTileUrl)
|
||||
{
|
||||
var url = this.offline.proxyPath? this.offline.proxyPath + "?" + _lastTileUrl : _lastTileUrl;
|
||||
var url = this.offline.proxyPath? this.offline.proxyPath + "?" + this._lastTileUrl : this._lastTileUrl;
|
||||
request.get(url,{
|
||||
handleAs: "text/plain; charset=x-user-defined",
|
||||
headers: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user