0.0.1 • Published 11 years ago

angularjs-scope.safeapply v0.0.1

Weekly downloads
18
License
-
Repository
github
Last release
11 years ago

AngularJS - Scope.SafeApply

About

...

Installation

To get this amazing plugin to run on your AngularJS application, simple download the plugin via NPM or Source File.

Then include this in your AngularJS application.

angular.module('YOUR_MODULE', ['Scope.SafeApply']);

As soon as the application is bootstrapped or set to a ng-app directive then the plugin can be used inside your scope variables.

Usage

To use the plugin, simple apply all your changes like so:

//use by itself
$scope.$safeApply();

//tell it which scope to update
$scope.$safeApply($scope);
$scope.$safeApply($anotherScope);

//pass in an update function that gets called when the digest is going on...
$scope.$safeApply(function() {

});

//pass in both a scope and a function
$scope.$safeApply($anotherScope,function() {

});

//call it on the rootScope
$rootScope.$safeApply();
$rootScope.$safeApply($rootScope);
$rootScope.$safeApply($scope);
$rootScope.$safeApply($scope, fn);
$rootScope.$safeApply(fn);

Testing

Be sure to install testacular via NPM (NodeJS) with the following command:

sudo npm install -g testacular

Then run this command at the root of the repo to test:

./test/run.sh

The test output should look like so:

Chrome 24.0: Executed X of X SUCCESS (0.123 secs / 0.123 secs)

Blog Article

... The challenges regarding $scope and $apply in AngularJS are talked about in more detail here:

http://www.yearofmoo.com/2012/10/more-angularjs-magic-to-supercharge-your-webapp.html#apply-digest-and-phase