node-webkit.dart
node-webkit.dart copied to clipboard
Window.get().enterFullscreen() causes crash
new gui.Window.get().enterFullscreen();
calling this, causes following error:
Uncaught TypeError: Cannot read property 'constructor' of undefined"
Replicatable by writing a simple app containing just the above line
Maybe you should so something like this:
(new gui.Window.get()).enterFullscreen();