mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
style(Scope): remove extra ws
This commit is contained in:
parent
7401c70718
commit
4a401bbcf3
1 changed files with 3 additions and 3 deletions
|
|
@ -266,7 +266,7 @@ function $RootScopeProvider(){
|
|||
|
||||
|
||||
|
||||
// Using a listener function
|
||||
// Using a listener function
|
||||
var food;
|
||||
scope.foodCounter = 0;
|
||||
expect(scope.foodCounter).toEqual(0);
|
||||
|
|
@ -291,7 +291,7 @@ function $RootScopeProvider(){
|
|||
// Update food and run digest. Now the counter will increment
|
||||
food = 'cheeseburger';
|
||||
scope.$digest();
|
||||
expect(scope.foodCounter).toEqual(1);
|
||||
expect(scope.foodCounter).toEqual(1);
|
||||
|
||||
* </pre>
|
||||
*
|
||||
|
|
@ -710,7 +710,7 @@ function $RootScopeProvider(){
|
|||
*
|
||||
* - `string`: execute using the rules as defined in {@link guide/expression expression}.
|
||||
* - `function(scope)`: execute the function with the current `scope` parameter.
|
||||
*
|
||||
*
|
||||
* @param {(object)=} locals Local variables object, useful for overriding values in scope.
|
||||
* @returns {*} The result of evaluating the expression.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue