bwin 0.4.2 → 0.4.3
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/bwin.js +15 -9
- package/package.json +1 -1
package/dist/bwin.js
CHANGED
|
@@ -774,7 +774,8 @@ var de = {
|
|
|
774
774
|
this.addPane(r.getAttribute("sash-id"), {
|
|
775
775
|
id: c,
|
|
776
776
|
position: n,
|
|
777
|
-
size: s
|
|
777
|
+
size: s,
|
|
778
|
+
withGlass: !1
|
|
778
779
|
}).domNode.append(e.bwGlassElement);
|
|
779
780
|
}
|
|
780
781
|
},
|
|
@@ -819,8 +820,9 @@ var de = {
|
|
|
819
820
|
let e = A(N);
|
|
820
821
|
this.removePane(e), this.addPane(t.id, {
|
|
821
822
|
position: n,
|
|
822
|
-
id: e
|
|
823
|
-
|
|
823
|
+
id: e,
|
|
824
|
+
withGlass: !1
|
|
825
|
+
}).domNode.append(N);
|
|
824
826
|
}
|
|
825
827
|
},
|
|
826
828
|
enableGlassDrag() {
|
|
@@ -1234,16 +1236,20 @@ var De = { enableDetachedGlassResize() {
|
|
|
1234
1236
|
}
|
|
1235
1237
|
onPaneUpdate() {}
|
|
1236
1238
|
addPane(e, t) {
|
|
1237
|
-
let { position: n, size: r, id: i,
|
|
1239
|
+
let { position: n, size: r, id: i, withGlass: a = !0, ...o } = t, s = super.addPane(e, {
|
|
1238
1240
|
position: n,
|
|
1239
1241
|
size: r,
|
|
1240
1242
|
id: i
|
|
1241
|
-
}), s = new H({
|
|
1242
|
-
...a,
|
|
1243
|
-
sash: o,
|
|
1244
|
-
binaryWindow: this
|
|
1245
1243
|
});
|
|
1246
|
-
|
|
1244
|
+
if (a) {
|
|
1245
|
+
let e = new H({
|
|
1246
|
+
...o,
|
|
1247
|
+
sash: s,
|
|
1248
|
+
binaryWindow: this
|
|
1249
|
+
});
|
|
1250
|
+
s.domNode.append(e.domNode);
|
|
1251
|
+
}
|
|
1252
|
+
return s;
|
|
1247
1253
|
}
|
|
1248
1254
|
setTheme(e) {
|
|
1249
1255
|
if (!e) {
|