isobit-ui 0.2.52 → 0.2.53
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 +5 -6
- 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.52
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1136,13 +1136,12 @@ var script$j = {
|
|
|
1136
1136
|
},
|
|
1137
1137
|
methods: {
|
|
1138
1138
|
setTitle: function setTitle(v) {
|
|
1139
|
-
var me = this
|
|
1139
|
+
var me = this,
|
|
1140
|
+
app = me.$parent.app;
|
|
1140
1141
|
|
|
1141
|
-
if (
|
|
1142
|
-
//console.log(window.app);
|
|
1142
|
+
if (app) {
|
|
1143
1143
|
setTimeout(function () {
|
|
1144
|
-
|
|
1145
|
-
window.app.title = v;
|
|
1144
|
+
app.title = v;
|
|
1146
1145
|
}, 100);
|
|
1147
1146
|
}
|
|
1148
1147
|
},
|