Skip to content

Instantly share code, notes, and snippets.

@redsquare
Created February 28, 2014 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redsquare/9279614 to your computer and use it in GitHub Desktop.
Save redsquare/9279614 to your computer and use it in GitHub Desktop.
$scope.updateview = function (iteration, $event) {
var _this = $("#" + $event.target.id);
$http.get('../issues?size=25&iteration=' + iteration).success(function (data) {
$scope.issueList = data;
_this.addClass("tab-selected");
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment