diff --git a/lib/edit/editsStore.js b/lib/edit/editsStore.js index 07b3a34..0b74520 100644 --- a/lib/edit/editsStore.js +++ b/lib/edit/editsStore.js @@ -43,7 +43,7 @@ O.esri.Edit.EditStore = function() id: layerUrl + "/" + graphic.attributes.objectid, operation: operation, layer: layerUrl, - graphic: this._serialize(graphic) + graphic: graphic }; var transaction = this._db.transaction([objectStoreName],"readwrite"); @@ -350,7 +350,7 @@ O.esri.Edit.EditStore = function() /** * Deletes an individual graphic from the phantom layer * @param id - * @param callback + * @param callback callback(boolean, message) */ this.deletePhantomGraphic = function(id,callback){ // NOTE: the implementation of the IndexedDB spec has a design fault with respect to @@ -412,7 +412,7 @@ O.esri.Edit.EditStore = function() }; /** - * Removes phantom graphics from database + * Removes all phantom graphics from database * @param callback boolean */ this.resetPhantomGraphicsQueue = function(callback){