Merge branch 'IncorrectTooltipDate-#70' into Release0.2
This commit is contained in:
commit
f381923394
@ -5,7 +5,7 @@ echo "1 - %Directory%"
|
|||||||
echo "1a - %SolutionDir%"
|
echo "1a - %SolutionDir%"
|
||||||
call :normalise "%Directory%"
|
call :normalise "%Directory%"
|
||||||
|
|
||||||
start /wait "" "%Directory%" -xml "%SolutionDir%WindowsDataCenter\Minifier\MinifierConfig.xml"
|
start /wait /min "" "%Directory%" -xml "%SolutionDir%WindowsDataCenter\Minifier\MinifierConfig.xml"
|
||||||
|
|
||||||
GOTO :EOF
|
GOTO :EOF
|
||||||
|
|
||||||
|
|||||||
@ -163,7 +163,7 @@
|
|||||||
}
|
}
|
||||||
self.convertToDisplayDateTime = function (dateValue) {
|
self.convertToDisplayDateTime = function (dateValue) {
|
||||||
var date = new Date(dateValue); // dd MM YY HH:mm:ss e.g.: 01 Mar 17 17:34:02
|
var date = new Date(dateValue); // dd MM YY HH:mm:ss e.g.: 01 Mar 17 17:34:02
|
||||||
return date.getDay() + " "
|
return date.getDate() + " "
|
||||||
+ date.toLocaleString("en-us", { month: "long" }) + " "
|
+ date.toLocaleString("en-us", { month: "long" }) + " "
|
||||||
+ (date.getYear()-100) + " "
|
+ (date.getYear()-100) + " "
|
||||||
+ self.padNumber(date.getHours()) + ":"
|
+ self.padNumber(date.getHours()) + ":"
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user