isobit-ui 0.0.304 → 0.0.305
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 +3 -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.305
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5459,12 +5459,12 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
5459
5459
|
if (!me._session) {
|
|
5460
5460
|
var s = localStorage.getItem('session');
|
|
5461
5461
|
if (s) s = JSON.parse(s);else s = {};
|
|
5462
|
-
|
|
5462
|
+
me._session = s;
|
|
5463
5463
|
}
|
|
5464
5464
|
|
|
5465
5465
|
return me._session;
|
|
5466
5466
|
},
|
|
5467
|
-
set: function set(
|
|
5467
|
+
set: function set(d) {
|
|
5468
5468
|
localStorage.setItem('session', JSON.stringify(d));
|
|
5469
5469
|
this._session = d;
|
|
5470
5470
|
}
|