Restyle the billing invoices tab

This commit is contained in:
Joseph Schorr 2015-04-01 15:04:01 -04:00
parent d408c74eaa
commit c31eea8f79
5 changed files with 39 additions and 86 deletions

View file

@ -15,11 +15,6 @@ angular.module('quay').directive('billingInvoices', function () {
},
controller: function($scope, $element, $sce, ApiService) {
$scope.loading = false;
$scope.invoiceExpanded = {};
$scope.toggleInvoice = function(id) {
$scope.invoiceExpanded[id] = !$scope.invoiceExpanded[id];
};
var update = function() {
var hasValidUser = !!$scope.user;