kopia lustrzana https://github.com/miklobit/TiddlyWiki5
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
rodzic
29c4ed20ce
commit
758d461823
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue