node.js - Tabular Browser Windows for Atom-Shell? -
i'm playing around atom-shell , wondering if has used/written module making tubular browser windows?
currently, seems, atom-shell opens new window when instantiating browserwindow:
var win = new browserwindow({ width: 800, height: 600, show: false }); win.on('closed', function() { win = null; }); win.loadurl('https://github.com'); win.show();
is there way of tabularising window, in atom application? or have write functionality inside current browserwindow in order work?
there no way create native tabs in atom shell. being said, @zcbenz suggests entirely doable <webview>
tag, allows safely host arbitrary web content inside atom shell.
Comments
Post a Comment