Fixed JSLint errors

This commit is contained in:
Henry
2015-12-08 14:51:25 -08:00
parent 4fbf547bfc
commit 4b7287e51e
7 changed files with 46 additions and 50 deletions

View File

@ -78,11 +78,11 @@ define(
$scope.cancelEditing = function() {
navigationService.setNavigation($scope.domainObject.getDomainObject());
}
};
$scope.doAction = function (action){
$scope[action] && $scope[action]();
}
return $scope[action] && $scope[action]();
};
}