@afeefa/vue-app 0.0.232 → 0.0.233
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.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.233
|
package/package.json
CHANGED
@@ -109,13 +109,17 @@ export default class InformationBar extends Vue {
|
|
109
109
|
const old = this.visible
|
110
110
|
const visible = this.hasSidebarItems()
|
111
111
|
|
112
|
-
if (visible
|
112
|
+
if (visible) {
|
113
113
|
this.width = this.getWidthFromItems() || this.defaultWidth
|
114
114
|
this.setRailMargin()
|
115
|
+
}
|
116
|
+
|
115
117
|
|
118
|
+
if (visible && !old) {
|
116
119
|
sidebarService.setInformation(true)
|
117
120
|
}
|
118
121
|
|
122
|
+
|
119
123
|
if (!visible && old) {
|
120
124
|
sidebarService.setInformation(false)
|
121
125
|
}
|