Check for being on a file URI before trying to use Firefox's XUL file saving

print-window-tiddler
Jeremy Ruston 2012-07-12 13:11:58 +01:00
rodzic 1971f86d5e
commit 632c846ae0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -53,7 +53,7 @@ FirefoxSaver.prototype.info = {
Static method that returns true if this saver is capable of working
*/
exports.canSave = function() {
return !!window.Components;
return window.location.protocol === "file:" && !!window.Components;
};
/*