Skip to content

Instantly share code, notes, and snippets.

@toddmotto
Created January 15, 2014 10:15
Show Gist options
  • Save toddmotto/8433866 to your computer and use it in GitHub Desktop.
Save toddmotto/8433866 to your computer and use it in GitHub Desktop.
Safe $scope.$apply();
myApp.service('Apply', ['$scope', function ($scope) {
return function ($scope) {
if (!$scope.$$phase) {
$scope.$apply();
}
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment