isobit-ui 0.0.505 → 0.0.509
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 +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.509
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -4905,8 +4905,7 @@ var resize = function resize() {
|
|
|
4905
4905
|
document.body.children[0].style.height = h + '.px';
|
|
4906
4906
|
var ph = document.querySelectorAll("#page-header,.ui-layout-north,.ion-page >ion-header");
|
|
4907
4907
|
ph = ph[0];
|
|
4908
|
-
var pc = document.querySelectorAll("#page-content,.ui-layout-pane-center,.ion-page > ion-content,ion-header + .ui-panel");
|
|
4909
|
-
console.log(pc);
|
|
4908
|
+
var pc = document.querySelectorAll("#page-content,.ui-layout-pane-center,.ion-page > ion-content,ion-header + .ui-panel"); //console.log(pc);
|
|
4910
4909
|
|
|
4911
4910
|
if (pc && pc[0]) {
|
|
4912
4911
|
//console.log('cccccccccccc');
|
|
@@ -6289,10 +6288,14 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6289
6288
|
data: o
|
|
6290
6289
|
});
|
|
6291
6290
|
} else {
|
|
6291
|
+
delete o["synchronized"];
|
|
6292
6292
|
var item = objectStore.get(o.tmpId);
|
|
6293
6293
|
|
|
6294
6294
|
item.onsuccess = function () {
|
|
6295
|
+
console.log(item.result);
|
|
6296
|
+
|
|
6295
6297
|
if (item.result) {
|
|
6298
|
+
console.log('objectStore.put(o)');
|
|
6296
6299
|
objectStore.put(o);
|
|
6297
6300
|
} else {
|
|
6298
6301
|
storedList.forEach(function (ee) {
|