Fix problem with lowercase drive letters when saving with TiddlyFox under Windows

print-window-tiddler
Jeremy Ruston 2013-09-19 13:50:28 +01:00
rodzic dec7870eeb
commit d0db2221d3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ TiddlyFoxSaver.prototype.save = function(text,callback) {
// Get the pathname of this document
var pathname = document.location.pathname;
// Test for a Windows path of the form /x:/blah/blah
if(/^\/[A-Z]\:\//.test(pathname)) {
if(/^\/[A-Z]\:\//i.test(pathname)) {
// Remove the leading slash
pathname = pathname.substr(1);
// Convert slashes to backslashes