isobit-ui 0.2.96 → 0.2.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.96
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -7921,7 +7921,9 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
7921
7921
|
|
|
7922
7922
|
var objectStoreRequest = objectStore.add(o);
|
|
7923
7923
|
|
|
7924
|
-
objectStoreRequest.onsuccess = function () {
|
|
7924
|
+
objectStoreRequest.onsuccess = function (e) {
|
|
7925
|
+
console.log(e);
|
|
7926
|
+
console.log('saved to ' + store);
|
|
7925
7927
|
storedList.unshift(o);
|
|
7926
7928
|
me.$emit('stored', o, storedList, objectStore);
|
|
7927
7929
|
if (me.app && me.app.toast) me.app.toast('El registro fue grabado exitosamente!');
|