Skip to content

Instantly share code, notes, and snippets.

@azu
Created April 27, 2014 14:22
Show Gist options
  • Save azu/11346774 to your computer and use it in GitHub Desktop.
Save azu/11346774 to your computer and use it in GitHub Desktop.
Open external browser when middle click link in node-webkit.
var gui = require('nw.gui');
var win = gui.Window.get();
win.on('new-win-policy', function (frame, url, policy) {
gui.Shell.openExternal(url);
policy.ignore();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment