electrobun 0.0.19-beta.130 → 0.0.19-beta.131
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/package.json
CHANGED
|
@@ -289,13 +289,17 @@ class MultitabBrowser {
|
|
|
289
289
|
|
|
290
290
|
// Hide all webviews
|
|
291
291
|
this.webviews.forEach((webview) => {
|
|
292
|
-
webview.classList.remove('active');
|
|
292
|
+
// webview.classList.remove('active');
|
|
293
|
+
webview.toggleHidden(true)
|
|
294
|
+
webview.togglePassthrough(true)
|
|
293
295
|
});
|
|
294
296
|
|
|
295
297
|
// Show the selected webview
|
|
296
298
|
const selectedWebview = this.webviews.get(tabId);
|
|
297
299
|
if (selectedWebview) {
|
|
298
300
|
selectedWebview.classList.add('active');
|
|
301
|
+
selectedWebview.toggleHidden(false)
|
|
302
|
+
selectedWebview.togglePassthrough(false)
|
|
299
303
|
}
|
|
300
304
|
|
|
301
305
|
this.activeTabId = tabId;
|