Tutorial: window.getNativeWindow

window.getNativeWindow

Returns the native JavaScript "window" object for the window.

Example

var win = fin.desktop.Window.getCurrent(),
    _win = win.getNativeWindow();

_win.addEventListener("DOMContentLoaded", function () {
    win.show();
});
_win.document.querySelector("#output").innerText = "The window has successfully been created.";