mirror of
https://ark.sudovanilla.org/Korbs/electron-tabs.git
synced 2024-12-23 03:53:53 +00:00
33 lines
500 B
HTML
33 lines
500 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>electron-tabs-demo</title>
|
|
</head>
|
|
<body style="margin:0">
|
|
|
|
<tab-group></tab-group>
|
|
|
|
<script src="../index.js"></script>
|
|
<script>
|
|
const tabGroup = document.querySelector("tab-group");
|
|
tabGroup.newTab = {
|
|
title: "New Tab"
|
|
}
|
|
|
|
tabGroup.addTab({
|
|
title: 'Google',
|
|
src: 'http://google.com',
|
|
});
|
|
|
|
tabGroup.addTab({
|
|
title: "Electron",
|
|
src: "http://electron.atom.io",
|
|
visible: true,
|
|
active: true
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|