Start on updated repo list view

This commit is contained in:
Joseph Schorr 2015-03-05 12:00:36 -05:00
parent b9e2863c94
commit 785de61c59
4 changed files with 66 additions and 61 deletions

View file

@ -120,6 +120,20 @@ angular.module("core-ui", [])
return directiveDefinitionObject;
})
.directive('corTitleAction', function() {
var directiveDefinitionObject = {
priority: 1,
templateUrl: '/static/directives/cor-title-action.html',
replace: true,
transclude: true,
restrict: 'C',
scope: {},
controller: function($rootScope, $scope, $element) {
}
};
return directiveDefinitionObject;
})
.directive('corTitleContent', function() {
var directiveDefinitionObject = {
priority: 1,