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; object-fit: cover;
} }
</style> </style>
<script type="application/javascript" src="/browser-polyfill.js"></script>
</head> </head>
<body> <body>
<!-- Container for the media --> <!-- Container for the media -->
<div id="media-container"> <div id="media-container"></div>
<!-- Will be populated dynamically -->
</div>
<script src="background.js"></script> <script src="background.js"></script>
</body> </body>
-1
View File
@@ -17,7 +17,6 @@ const openDB = () => {
const readData = async () => { const readData = async () => {
const selectedBackground = localStorage.getItem('selectedBackground'); const selectedBackground = localStorage.getItem('selectedBackground');
if (!selectedBackground) { if (!selectedBackground) {
console.log('No selected background in local storage.');
return null; return null;
} }