We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fabbc59 commit 15f2ec2Copy full SHA for 15f2ec2
2 files changed
cefpython/cef3/linux/binaries_64bit/wxpython.html
@@ -30,6 +30,13 @@ <h3>Popup</h3>
30
31
32
33
+<h3>Create another browser</h3>
34
+<a href="javascript:external.CreateAnotherBrowser()">
35
+ external.CreateAnotherBrowser()</a>
36
+
37
38
39
40
<h3>HTML5 video and accelerated content</h3>
41
<a href="http://www.youtube.com/watch?v=siOHh0uzcuY&html5=True">
42
HTML 5 video</a><br>
cefpython/cef3/linux/binaries_64bit/wxpython.py
@@ -165,6 +165,10 @@ class JavascriptExternal:
165
def __init__(self, mainBrowser):
166
self.mainBrowser = mainBrowser
167
168
+ def CreateAnotherBrowser(self):
169
+ frame = MainFrame()
170
+ frame.Show()
171
172
def Print(self, message):
173
print(message)
174
0 commit comments