Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save megoth/6366615 to your computer and use it in GitHub Desktop.
Save megoth/6366615 to your computer and use it in GitHub Desktop.
$scope.$on("checkboxSurveyCompleted", function (event, uri) {
$scope.showButton = true;
$scope.$digest();
var toSubmit = { exerciseId: $scope.exercise.id };
$scope.result.$complete(toSubmit)
.success(function () {
$scope.$emit("SetExerciseUrl", uri);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment