Implementing more of the jobs ui.

* fixes in the jobs detail panel
* hover for job group shows group name
* view log directly from right-clicking a job icon
This commit is contained in:
Cameron Dawson 2013-08-23 17:31:04 -07:00
Родитель 4330fb89d2
Коммит 56226cd0a3
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,14 @@
'use strict';
/* Directives */
treeherder.directive('ngRightClick', function($parse) {
return function(scope, element, attrs) {
var fn = $parse(attrs.ngRightClick);
element.bind('contextmenu', function(event) {
scope.$apply(function() {
event.preventDefault();
fn(scope, {$event:event});
});
});
};
});