clean up background.{html,js}

This commit is contained in:
SethBurkart123
2023-12-21 13:27:13 +11:00
parent e13edc5be7
commit a38ea4b5d8
2 changed files with 1 additions and 5 deletions
+1 -4
View File
@@ -19,13 +19,10 @@
object-fit: cover;
}
</style>
<script type="application/javascript" src="/browser-polyfill.js"></script>
</head>
<body>
<!-- Container for the media -->
<div id="media-container">
<!-- Will be populated dynamically -->
</div>
<div id="media-container"></div>
<script src="background.js"></script>
</body>
-1
View File
@@ -17,7 +17,6 @@ const openDB = () => {
const readData = async () => {
const selectedBackground = localStorage.getItem('selectedBackground');
if (!selectedBackground) {
console.log('No selected background in local storage.');
return null;
}