fixing jshint errors

This commit is contained in:
Jared Tabor
2015-03-12 15:49:08 -04:00
parent 333adea673
commit 757e77e9a3
2 changed files with 3 additions and 3 deletions

View File

@@ -320,7 +320,7 @@ export function InventoriesList($scope, $rootScope, $location, $log, $routeParam
$scope.manageInventory = function(id){ $scope.manageInventory = function(id){
$location.path($location.path() + '/' + id + '/manage'); $location.path($location.path() + '/' + id + '/manage');
} };
$scope.deleteInventory = function (id, name) { $scope.deleteInventory = function (id, name) {
@@ -619,7 +619,7 @@ export function InventoriesEdit($scope, $rootScope, $compile, $location, $log, $
$scope.manageInventory = function(){ $scope.manageInventory = function(){
$location.path($location.path() + '/manage'); $location.path($location.path() + '/manage');
} };
$scope.showActivity = function () { $scope.showActivity = function () {
Stream({ scope: $scope }); Stream({ scope: $scope });

View File

@@ -29,7 +29,7 @@ export default
key: true, key: true,
label: 'Hosts', label: 'Hosts',
ngClick: "editHost(host.id)", ngClick: "editHost(host.id)",
columnClass: 'col-lg-6 col-md-9 col-sm-9 col-xs-7',git columnClass: 'col-lg-6 col-md-9 col-sm-9 col-xs-7',
dataHostId: "{{ host.id }}", dataHostId: "{{ host.id }}",
dataType: "host" dataType: "host"
}, },