mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-04-11 22:16:53 -05:00
17 lines
355 B
HTML
17 lines
355 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var gui = require('nw.gui');
|
|
var win = gui.Window.get();
|
|
|
|
if (process.platform === 'darwin') {
|
|
var gui = require('nw.gui');
|
|
var mb = new gui.Menu({type:"menubar"});
|
|
mb.createMacBuiltin("Pokemon Showdown");
|
|
win.menu = mb;
|
|
}
|
|
|
|
win.maximize();
|
|
win.show();
|
|
document.location.replace('https://play.pokemonshowdown.com/');
|
|
</script>
|