Skip to content

Instantly share code, notes, and snippets.

@vreality64
Last active August 29, 2015 14:27
Show Gist options
  • Save vreality64/f5d855a4cc75b01091f8 to your computer and use it in GitHub Desktop.
Save vreality64/f5d855a4cc75b01091f8 to your computer and use it in GitHub Desktop.
AngularJS and scope.$apply example
function Ctrl($scope) {
$scope.message = "Waiting 2000ms for update";
setTimeout(function () {
$scope.message = "Timeout called!";
// AngularJS unaware of update to $scope
}, 2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment