remove align option

This commit is contained in:
Mitsuhiro Tanda 2016-03-02 16:02:08 +09:00
parent 7da57e0aa5
commit ef22a87fcf
3 changed files with 3 additions and 7 deletions

View File

@ -65,14 +65,11 @@ define([
}
};
this.setAutoRefresh = function (interval, align) {
this.setAutoRefresh = function (interval) {
this.dashboard.refresh = interval;
if (interval) {
var _i = kbn.interval_to_ms(interval);
var wait_ms = 0;
if (align) {
wait_ms = _i - (Date.now() % _i);
}
var wait_ms = _i - (Date.now() % _i);
$timeout(function () {
self.start_scheduled_refresh(_i);
}, wait_ms);

View File

@ -40,7 +40,6 @@
<div class="gf-form max-width-28">
<select ng-model="ctrl.refresh.value" class="gf-form-input input-medium" ng-options="f.value as f.text for f in ctrl.refresh.options"></select>
</div>
<editor-checkbox text="Align" model="ctrl.refresh.align"></editor-checkbox>
<div class="gf-form">
<button type="submit" class="btn gf-form-btn btn-secondary" ng-click="ctrl.applyCustom();" ng-disabled="!timeForm.$valid">Apply</button>
</div>

View File

@ -109,7 +109,7 @@ export class TimePickerCtrl {
applyCustom() {
if (this.refresh.value !== this.dashboard.refresh) {
this.timeSrv.setAutoRefresh(this.refresh.value, this.refresh.align);
this.timeSrv.setAutoRefresh(this.refresh.value);
}
this.timeSrv.setTime(this.timeRaw, true);