Commit 1aff1a00 by Torkel Ödegaard

mini improvement to xasis format (now shows just hours for larger time spans)

parent df54c17d
......@@ -269,11 +269,11 @@ function (angular, $, kbn, moment, _) {
if(_int >= 10000) {
return "%Y-%m-%d";
}
if(_int >= 60) {
if(_int >= 700) {
return "%H:%M<br>%m-%d";
}
return "%H:%M:%S";
return "%H:%M";
}
var $tooltip = $('<div>');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment