Skip to content

Instantly share code, notes, and snippets.

@erkobridee
Created May 2, 2016 23:14
Show Gist options
  • Save erkobridee/c239b6db4dc3939dd4a95694a98e9a43 to your computer and use it in GitHub Desktop.
Save erkobridee/c239b6db4dc3939dd4a95694a98e9a43 to your computer and use it in GitHub Desktop.
function safeScopeApply(){
// safe scope call
if(
$scope.$root.$$phase !== '$apply' &&
$scope.$root.$$phase !== '$digest'
) {
$scope.$apply();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment