dock-spawn-ts
Advanced tools
Comparing version 2.530.0 to 2.531.0
@@ -368,3 +368,6 @@ import { Utils } from "./Utils.js"; | ||
undockToBrowserDialog() { | ||
moveElementToNewBrowserWindow(this.elementContent, { | ||
let el = this.elementContent; | ||
if (el instanceof HTMLSlotElement) | ||
el = el.assignedElements()[0]; | ||
moveElementToNewBrowserWindow(el, { | ||
title: '', | ||
@@ -371,0 +374,0 @@ closeCallback: () => { }, |
{ | ||
"name": "dock-spawn-ts", | ||
"version": "2.530.0", | ||
"version": "2.531.0", | ||
"description": "DockSpawn Typescript Version", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -460,3 +460,6 @@ import { DockManager } from "./DockManager.js"; | ||
undockToBrowserDialog() { | ||
moveElementToNewBrowserWindow(this.elementContent, { | ||
let el: HTMLElement = this.elementContent; | ||
if (el instanceof HTMLSlotElement) | ||
el = <HTMLElement>el.assignedElements()[0] | ||
moveElementToNewBrowserWindow(el, { | ||
title: '', | ||
@@ -463,0 +466,0 @@ closeCallback: () => { }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
787583
217
10942