We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ccecb commit f222b40Copy full SHA for f222b40
public/sw.js
@@ -1,5 +1,5 @@
1
const cacheName = "luizbills.litecanvas-editor-v1";
2
-const version = "2.34.0";
+const version = "2.34.1";
3
4
const precacheResources = [
5
"/",
src/index.js
@@ -226,6 +226,10 @@ window.addEventListener("click", (evt) => {
226
iframe.blur();
227
});
228
229
+window.addEventListener("blur", (evt) => {
230
+ iframe.blur();
231
+});
232
+
233
function compressString(str) {
234
return btoa(String.fromCharCode.apply(null, Array.from(pako.deflate(str))));
235
}
0 commit comments