mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
destringify undefined
This commit is contained in:
parent
84ff80d8f7
commit
1d7bef3521
@ -39,7 +39,7 @@ define([
|
||||
layer._minZoom = null;
|
||||
layer._maxZoom = null;
|
||||
|
||||
if( dbConfig === "undefined" || dbConfig === null){
|
||||
if( dbConfig === undefined || dbConfig === null){
|
||||
// Database properties
|
||||
layer.DB_NAME = "offline_tile_store"; // Sets the database name.
|
||||
layer.DB_OBJECTSTORE_NAME = "tilepath"; // Represents an object store that allows access to a set of data in the IndexedDB database
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user