Add info to the build pane that shows if a trigger started the build

This commit is contained in:
Joseph Schorr 2014-02-20 13:27:59 -05:00
parent 5b0300ab62
commit c494c889f5
5 changed files with 37 additions and 11 deletions

View file

@ -2527,6 +2527,23 @@ quayApp.directive('buildLogError', function () {
});
quayApp.directive('triggerDescription', function () {
var directiveDefinitionObject = {
priority: 0,
templateUrl: '/static/directives/trigger-description.html',
replace: false,
transclude: false,
restrict: 'C',
scope: {
'trigger': '=trigger'
},
controller: function($scope, $element) {
}
};
return directiveDefinitionObject;
});
quayApp.directive('buildLogCommand', function () {
var directiveDefinitionObject = {
priority: 0,