Skip to content

Commit 97f3fd5

Browse files
committed
Changed default duration to fifteen minutes
1 parent 0884169 commit 97f3fd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

platform/features/conductor-v2/src/TimeConductorController.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ define(
2424
[],
2525
function () {
2626

27-
var SIX_HOURS = 6 * 60 * 60 * 1000;
27+
var FIFTEEN_MINUTES = 15 * 60 * 1000;
2828

2929
function TimeConductorController($scope, $timeout, conductor) {
3030
var self = this;
@@ -102,7 +102,7 @@ define(
102102
TimeConductorController.prototype.initialize = function () {
103103
var now = Math.ceil(Date.now() / 1000) * 1000;
104104
//Set the time conductor to some default
105-
this.conductor.bounds({start: now - SIX_HOURS, end: now});
105+
this.conductor.bounds({start: now - FIFTEEN_MINUTES, end: now});
106106

107107
this.$scope.modeModel.selected = 'fixed';
108108
this.conductor.follow(false);

0 commit comments

Comments
 (0)