electron-tabs/demo/electron-tabs.html

33 lines
513 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-23 11:10:29 -05:00
<tab-group></tab-group>
2017-06-27 15:38:44 -05:00
2022-05-23 11:46:45 -05:00
<script src="../dist/electron-tabs.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");
tabGroup.newTab = {
title: "New Tab"
}
2020-02-04 05:13:57 -05:00
tabGroup.addTab({
title: 'Google',
src: 'http://google.com',
});
tabGroup.addTab({
title: "Electron",
src: "http://electron.atom.io",
visible: true,
active: true
});
2017-06-27 15:38:44 -05:00
</script>
</body>
</html>