Переглянути джерело

fix bug getting confused with momentjs formatting char LT and our T

Adam Shaw 11 роки тому
батько
коміт
46b401c090
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      src/date-formatting.js

+ 1 - 1
src/date-formatting.js

@@ -203,7 +203,7 @@ function getFormatStringChunks(formatStr) {
 // Break the formatting string into an array of chunks
 // Break the formatting string into an array of chunks
 function chunkFormatString(formatStr) {
 function chunkFormatString(formatStr) {
 	var chunks = [];
 	var chunks = [];
-	var chunker = /\[([^\]]*)\]|\(([^\)]*)\)|((\w)\4*o?T?)|([^\w\[\(]+)/g; // TODO: more descrimination
+	var chunker = /\[([^\]]*)\]|\(([^\)]*)\)|(LT|(\w)\4*o?)|([^\w\[\(]+)/g; // TODO: more descrimination
 	var match;
 	var match;
 
 
 	while ((match = chunker.exec(formatStr))) {
 	while ((match = chunker.exec(formatStr))) {