Update utils.js

I think /\\/g is wrong as it will remove every \ from the string. I think, the usual way of keeping the following character is more appropriate.
print-window-tiddler
Skeeve 2014-01-29 13:43:34 +01:00
rodzic 29c4ed20ce
commit 758d461823
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -166,7 +166,7 @@ exports.formatDateString = function (date,template) {
var tz = date.getTimezoneOffset();
var atz = Math.abs(tz);
t = t.replace(/TZD/g,(tz < 0 ? '+' : '-') + $tw.utils.pad(Math.floor(atz / 60)) + ':' + $tw.utils.pad(atz % 60));
t = t.replace(/\\/g,"");
t = t.replace(/\\(.)/g,"$1");
return t;
};