We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df84c44 commit 5fccc16Copy full SHA for 5fccc16
libs/backendless.js
@@ -656,7 +656,7 @@
656
storage = window[localStorageName];
657
658
var createBndlsStorage = function() {
659
- if (!('Backendless' in storage)) {
+ if (!(storage.getItem('Backendless'))) {
660
storage.setItem('Backendless', store.serialize({}));
661
}
662
};
@@ -2083,7 +2083,7 @@
2083
asyncHandler: responder
2084
});
2085
},
2086
-
+
2087
/** @deprecated */
2088
addPoint: function(geopoint, async) {
2089
return this.savePoint.apply(this, arguments);
@@ -4616,4 +4616,4 @@
4616
4617
4618
return Backendless;
4619
-});
+});
0 commit comments