Add missing semicolons.

pull/3563/head
Tim Habermaas 9 years ago committed by Stefan Botzenhart
parent 390de18d1a
commit b7da944446
  1. 6
      frontend/app/work_packages/controllers/work-package-show-controller.js

@ -80,7 +80,7 @@ module.exports = function($scope,
data: JSON.stringify($scope.toggleWatchLink.props.payload)
}})
.then(refreshWorkPackage, $scope.outputError);
}
};
$scope.unwatch = function() {
if (!$scope.isWatched) {
@ -95,7 +95,7 @@ module.exports = function($scope,
data: JSON.stringify($scope.toggleWatchLink.props.payload)
}})
.then(refreshWorkPackage, $scope.outputError);
}
};
function fetchProjectTypes() {
@ -285,7 +285,7 @@ module.exports = function($scope,
// TODO: Temporarily going to the old edit dialog until we get in-place editing done
window.location = editWorkPackagePath + backUrl;
}
};
// Stuff copied from DetailsTabOverviewController
var vm = this;

Loading…
Cancel
Save