Commit 254a553e by Rashid Khan

Fix for timepicker mode in firefox. Closes #222

parent 344403d0
...@@ -84,9 +84,12 @@ angular.module('kibana.timepicker', []) ...@@ -84,9 +84,12 @@ angular.module('kibana.timepicker', [])
if(filterSrv.idsByType('time').length > 0) { if(filterSrv.idsByType('time').length > 0) {
var time = filterSrv.timeRange('min') var time = filterSrv.timeRange('min')
if($scope.time.from.diff(moment.utc(time.from)) != 0 if($scope.time.from.diff(moment.utc(time.from),'seconds') !== 0
|| $scope.time.to.diff(moment.utc(time.to)) != 0) || $scope.time.to.diff(moment.utc(time.to),'seconds') !== 0)
{ {
console.log($scope.time.from+ " and "+ moment.utc(time.from))
console.log($scope.time.to+" and "+moment.utc(time.to))
$scope.set_mode('absolute'); $scope.set_mode('absolute');
// These 3 statements basicly do everything time_apply() does // These 3 statements basicly do everything time_apply() does
......
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