electron-tabs/demo/electron-tabs.html

37 lines
675 B
HTML
Raw Normal View History

2017-06-27 22:38:44 +02:00
<!DOCTYPE html>
<html>
<head>
2020-03-10 21:53:22 +01:00
<title>electron-tabs-demo</title>
2017-06-27 22:38:44 +02:00
</head>
<body style="margin:0">
2022-05-23 23:18:52 +02:00
<tab-group new-tab-button="true"></tab-group>
2017-06-27 22:38:44 +02:00
2022-05-23 18:46:45 +02:00
<script src="../dist/electron-tabs.js"></script>
2017-06-27 22:38:44 +02:00
<script>
2022-05-23 18:10:29 +02:00
const tabGroup = document.querySelector("tab-group");
2022-05-23 19:17:47 +02:00
2022-05-23 23:18:52 +02:00
tabGroup.setDefaultTab({
title: "Wikipedia",
src: "https://www.wikipedia.org/"
2022-05-23 19:17:47 +02:00
});
2020-02-04 11:13:57 +01:00
tabGroup.addTab({
2022-05-23 19:17:47 +02:00
title: "electron-tabs on NPM",
src: "https://www.npmjs.com/package/electron-tabs",
2020-02-04 11:13:57 +01:00
});
tabGroup.addTab({
2022-05-23 19:17:47 +02:00
title: "electron-tabs on Github",
src: "https://github.com/brrd/electron-tabs",
2020-02-04 11:13:57 +01:00
visible: true,
active: true
});
2017-06-27 22:38:44 +02:00
2022-05-23 23:18:52 +02:00
tabGroup.addTab();
2022-05-23 19:17:47 +02:00
2017-06-27 22:38:44 +02:00
</script>
</body>
</html>