electron-tabs/demo/electron-tabs.html

36 lines
696 B
HTML
Raw Normal View History

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