mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
destringify undefined #2
This commit is contained in:
parent
1d7bef3521
commit
5aa62c317c
@ -28,7 +28,7 @@ define([
|
|||||||
callback(false);
|
callback(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( dbConfig === "undefined" || dbConfig === null){
|
if( dbConfig === undefined || dbConfig === null){
|
||||||
// Database properties
|
// Database properties
|
||||||
this.DB_NAME = "offline_tile_store"; // Sets the database name.
|
this.DB_NAME = "offline_tile_store"; // Sets the database name.
|
||||||
this.DB_OBJECTSTORE_NAME = "tilepath"; // Represents an object store that allows access to a set of data in the IndexedDB database
|
this.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