Skip to content

Commit

Permalink
Fixed texteditor service
Browse files Browse the repository at this point in the history
  • Loading branch information
bit-turtle authored Nov 11, 2024
1 parent 5887551 commit d0a8ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion texteditor.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var staticCacheName = "texteditor";
self.addEventListener("install", function (e) {
e.waitUntil(
caches.open(staticCacheName).then(function (cache) {
return cache.addAll(["/", "/texteditor.html"]);
return cache.addAll(["/texteditor.html"]);
})
);
});
Expand Down

0 comments on commit d0a8ff0

Please sign in to comment.