Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
chemicalcrux
/
macrovision
Observar
1
Favorito
0
Fork
0
Código
Issues
5
Pull requests
0
Versões
10
Wiki
Atividade
Ver código fonte
Log a console error when a screenshot fails
master
Fen Dweller
4 anos atrás
pai
3c2ef5ac42
commit
ee1bddd8c9
1 arquivos alterados
com
5 adições
e
4 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+5
-4
macrovision.js
+ 5
- 4
macrovision.js
Ver arquivo
@@ -5361,12 +5361,13 @@ function copyScreenshot() {
new ClipboardItem({
"image/png": blob
})
]).then(e =>
]).then(e =>
toast("Copied to clipboard!"))
.catch(e => {
toast("Couldn't write to the clipboard. Make sure the screenshot completes before switching tabs.")
})
});
console.error(e);
toast("Couldn't write to the clipboard. Make sure the screenshot completes before switching tabs.")
})
});
drawScales(false);
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar