1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-15 06:47:25 +00:00

Cleaning up further coding style inconsistencies that have crept in

This commit is contained in:
Jermolene
2014-01-03 10:50:00 +00:00
parent 8fc5c1d4a0
commit 1a74e2538c
6 changed files with 8 additions and 8 deletions

View File

@@ -246,7 +246,7 @@ $tw.utils.parseDate = function(value) {
parseInt(value.substr(10,2)||"00",10),
parseInt(value.substr(12,2)||"00",10),
parseInt(value.substr(14,3)||"000",10)));
} else if ($tw.utils.isDate(value)) {
} else if($tw.utils.isDate(value)) {
return value;
} else {
return null;
@@ -282,7 +282,7 @@ $tw.utils.parseStringArray = function(value) {
}
} while(match);
return results;
} else if ($tw.utils.isArray(value)) {
} else if($tw.utils.isArray(value)) {
return value;
} else {
return null;