Skip to content

Instantly share code, notes, and snippets.

@arkadius
Created January 3, 2015 00:29
Show Gist options
  • Save arkadius/99bfed0e8413093541eb to your computer and use it in GitHub Desktop.
Save arkadius/99bfed0e8413093541eb to your computer and use it in GitHub Desktop.
app.controller("ProjectCtrl", ['$scope', 'historySvc', function ($scope, historySvc) {
(...)
var refreshChart = function () {
historySvc.getHistory($scope.selectedSprint.id).then(function (history) {
$scope.history = history;
});
};
(...)
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment