stackviz/app/js/directives/timeline-details.js
Masayuki Igawa f264fac5b1 Add links of openstack-health on Timeline and Test details
This commit adds links of the openstack-health on the Timeline and Test
details.

Change-Id: I7fd65dbbd6068b5cfc3a9b48b6d034ebd2f768f9
2016-06-14 14:44:44 +09:00

29 lines
492 B
JavaScript

'use strict';
var directivesModule = require('./_index.js');
/**
* @ngInject
*/
function timelineDetails(AppSettings) {
/**
* @ngInject
*/
var controller = function($scope) {
$scope.healthRoot = AppSettings.healthRoot;
};
return {
restrict: 'EA',
scope: {
'artifactName': '=',
'item': '='
},
controller: controller,
templateUrl: 'directives/timeline-details.html'
};
}
directivesModule.directive('timelineDetails', timelineDetails);