mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
Merge pull request #225 from rashidkpc/master
Fix for timepicker mode in firefox. Closes #222
This commit is contained in:
commit
3359284a93
@ -84,9 +84,12 @@ angular.module('kibana.timepicker', [])
|
||||
if(filterSrv.idsByType('time').length > 0) {
|
||||
var time = filterSrv.timeRange('min')
|
||||
|
||||
if($scope.time.from.diff(moment.utc(time.from)) != 0
|
||||
|| $scope.time.to.diff(moment.utc(time.to)) != 0)
|
||||
if($scope.time.from.diff(moment.utc(time.from),'seconds') !== 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');
|
||||
|
||||
// These 3 statements basicly do everything time_apply() does
|
||||
|
Loading…
Reference in New Issue
Block a user