1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-24 00:50:28 +00:00

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.
This commit is contained in:
Skeeve 2014-01-29 13:43:34 +01:00
parent 29c4ed20ce
commit 758d461823

View File

@ -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;
};