@tiddh/brave-vue 1.93.235 → 1.93.237
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.
|
@@ -216,7 +216,7 @@ export default {
|
|
|
216
216
|
|
|
217
217
|
self.isMobile = self.detectSize();
|
|
218
218
|
|
|
219
|
-
|
|
219
|
+
document.addEventListener("resize", function (e) {
|
|
220
220
|
self.isMobile = self.detectSize();
|
|
221
221
|
});
|
|
222
222
|
|
|
@@ -270,7 +270,7 @@ export default {
|
|
|
270
270
|
|
|
271
271
|
detectSize() {
|
|
272
272
|
var menuStatus = false;
|
|
273
|
-
if (
|
|
273
|
+
if (document.innerWidth < 990) {
|
|
274
274
|
menuStatus = true;
|
|
275
275
|
}
|
|
276
276
|
return menuStatus;
|
|
@@ -216,7 +216,7 @@ export default {
|
|
|
216
216
|
|
|
217
217
|
self.isMobile = self.detectSize();
|
|
218
218
|
|
|
219
|
-
|
|
219
|
+
document.addEventListener("resize", function (e) {
|
|
220
220
|
self.isMobile = self.detectSize();
|
|
221
221
|
});
|
|
222
222
|
|
|
@@ -270,7 +270,7 @@ export default {
|
|
|
270
270
|
|
|
271
271
|
detectSize() {
|
|
272
272
|
var menuStatus = false;
|
|
273
|
-
if (
|
|
273
|
+
if (document.innerWidth < 990) {
|
|
274
274
|
menuStatus = true;
|
|
275
275
|
}
|
|
276
276
|
return menuStatus;
|
|
@@ -216,7 +216,7 @@ export default {
|
|
|
216
216
|
|
|
217
217
|
self.isMobile = self.detectSize();
|
|
218
218
|
|
|
219
|
-
|
|
219
|
+
document.addEventListener("resize", function (e) {
|
|
220
220
|
self.isMobile = self.detectSize();
|
|
221
221
|
});
|
|
222
222
|
|
|
@@ -270,7 +270,7 @@ export default {
|
|
|
270
270
|
|
|
271
271
|
detectSize() {
|
|
272
272
|
var menuStatus = false;
|
|
273
|
-
if (
|
|
273
|
+
if (document.innerWidth < 990) {
|
|
274
274
|
menuStatus = true;
|
|
275
275
|
}
|
|
276
276
|
return menuStatus;
|