Fixed js lint issues.

This commit is contained in:
Chris Houseknecht
2014-07-09 18:48:07 -04:00
parent 97f9ebf5ea
commit 94e8572695

View File

@@ -679,12 +679,10 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar
scope.toggleLessStatus = function() {
if (!scope.lessStatus) {
console.log('hide');
$('#job-status-form .toggle-show').hide(400);
scope.lessStatus = true;
}
else {
console.log('show');
$('#job-status-form .toggle-show').show(400);
scope.lessStatus = false;
}