We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0884169 commit 97f3fd5Copy full SHA for 97f3fd5
platform/features/conductor-v2/src/TimeConductorController.js
@@ -24,7 +24,7 @@ define(
24
[],
25
function () {
26
27
- var SIX_HOURS = 6 * 60 * 60 * 1000;
+ var FIFTEEN_MINUTES = 15 * 60 * 1000;
28
29
function TimeConductorController($scope, $timeout, conductor) {
30
var self = this;
@@ -102,7 +102,7 @@ define(
102
TimeConductorController.prototype.initialize = function () {
103
var now = Math.ceil(Date.now() / 1000) * 1000;
104
//Set the time conductor to some default
105
- this.conductor.bounds({start: now - SIX_HOURS, end: now});
+ this.conductor.bounds({start: now - FIFTEEN_MINUTES, end: now});
106
107
this.$scope.modeModel.selected = 'fixed';
108
this.conductor.follow(false);
0 commit comments