--
You received this message because you are subscribed to the Google Groups "node-webkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-webkit...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
<script> var gui = require('nw.gui'); var win = gui.Window.open('http://github.com'); win.on('loaded', function() { win.window.onresize = function() { console.log("test"); } }); </script>