Commit 52644bb2 by Torkel Ödegaard

fix(timepicker): fixed recent breaking of datetime picker when swithing from requirejs to systemjs

parent 7cad3c89
define([
"angular",
"lodash",
"moment",
],function (angular, _, moment) {
'use strict';
///<reference path="../../../headers/common.d.ts" />
angular.
module("grafana.directives").
directive('inputDatetime', function () {
import _ from 'lodash';
import angular from 'angular';
import moment from 'moment';
export function inputDateDirective() {
return {
restrict: 'A',
require: 'ngModel',
......@@ -40,5 +37,5 @@ define([
ngModel.$formatters.push(toUser);
}
};
});
});
}
///<reference path="../../../headers/common.d.ts" />
///<amd-dependency path="./input_date" name="inputDate" />
import _ from 'lodash';
import kbn from 'app/core/utils/kbn';
......@@ -9,8 +8,6 @@ import moment from 'moment';
import * as dateMath from 'app/core/utils/datemath';
import * as rangeUtil from 'app/core/utils/rangeutil';
declare var inputDate: any;
export class TimePickerCtrl {
static tooltipFormat = 'MMM D, YYYY HH:mm:ss';
......@@ -179,3 +176,6 @@ export function timePickerDirective() {
angular.module('grafana.directives').directive('gfTimePickerSettings', settingsDirective);
angular.module('grafana.directives').directive('gfTimePicker', timePickerDirective);
import {inputDateDirective} from './input_date';
angular.module("grafana.directives").directive('inputDatetime', inputDateDirective);
......@@ -56,7 +56,7 @@ export class GrafanaApp {
'ang-drag-drop',
'grafana',
'pasvaz.bindonce',
'ui.bootstrap.tabs',
'ui.bootstrap',
'ui.bootstrap.tpls',
];
......
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