Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Visual tweaks
  • Loading branch information
sec11008 committed Dec 10, 2015
1 parent ad0e6f2 commit 56a17a0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions TeamDBAwesome/TeamDBAwesome/js/adminController.js
@@ -1,10 +1,8 @@
// This controller will hold logic for the employee Portal homepage (Order List, Logout), Customer Info, Media Center, and Reports // This controller will hold logic for the employee Portal homepage (Order List, Logout), Customer Info, Media Center, and Reports


<<<<<<< HEAD
angular.module('routerApp').controller('adminController', function ($scope, $http, $log, $timeout, $cookies, urlService, $anchorScroll, $location, $q, $state, $rootScope, HolderService, uiGridConstants) { angular.module('routerApp').controller('adminController', function ($scope, $http, $log, $timeout, $cookies, urlService, $anchorScroll, $location, $q, $state, $rootScope, HolderService, $uibModal,uiGridConstants) {
=======
angular.module('routerApp').controller('adminController', function ($scope, $http, $log, $timeout, $cookies, urlService, $anchorScroll, $location, $q, $state, $rootScope, HolderService, $uibModal) {
>>>>>>> origin/master
/* Retrieve Url */ /* Retrieve Url */
var url = urlService.web; var url = urlService.web;
$scope.name = $cookies.get('name'); $scope.name = $cookies.get('name');
Expand Down Expand Up @@ -520,7 +518,8 @@ angular.module('routerApp').controller('adminController', function ($scope, $htt
condition: uiGridConstants.filter.LESS_THAN, condition: uiGridConstants.filter.LESS_THAN,
placeholder: 'less than' placeholder: 'less than'
} }
] ],
width: '5%'
}, },
{ field: 'customerId', displayName: 'Customer Id', { field: 'customerId', displayName: 'Customer Id',
filters: [ filters: [
Expand All @@ -532,12 +531,13 @@ angular.module('routerApp').controller('adminController', function ($scope, $htt
condition: uiGridConstants.filter.LESS_THAN, condition: uiGridConstants.filter.LESS_THAN,
placeholder: 'less than' placeholder: 'less than'
} }
] ],
width: '5%'
}, },
{ field: 'invoiceDate', displayName: 'Date' }, { field: 'invoiceDate', displayName: 'Date' },
{ field: 'address', displayName: 'Street Address' }, { field: 'address', displayName: 'Street Address' },
{ field: 'city', displayName: 'City' }, { field: 'city', displayName: 'City' },
{ field: 'state', displayName: 'State' }, { field: 'state', displayName: 'State', width: '5%' },
{ field: 'country', displayName: 'Country' }, { field: 'country', displayName: 'Country' },
{ field: 'post', displayName: 'Postal Code' }, { field: 'post', displayName: 'Postal Code' },
{field: 'total', {field: 'total',
Expand Down

0 comments on commit 56a17a0

Please sign in to comment.