aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng
diff options
context:
space:
mode:
authorIgor Minar2013-10-11 12:21:34 -0700
committerIgor Minar2013-10-11 17:12:24 -0700
commit83fbaa54f13ff94d193115de0eaa3799739af3a5 (patch)
tree656b1f0ceb921ad28da1f751b18e16d0d026bcab /src/ng
parent9f4d99f4eaa53ea4b186a2954b23ce4c86643947 (diff)
downloadangular.js-83fbaa54f13ff94d193115de0eaa3799739af3a5.tar.bz2
style: strip white space from files
Diffstat (limited to 'src/ng')
-rwxr-xr-xsrc/ng/directive/ngIf.js4
-rw-r--r--src/ng/directive/ngInclude.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/directive/ngIf.js b/src/ng/directive/ngIf.js
index bbb03918..005dda8e 100755
--- a/src/ng/directive/ngIf.js
+++ b/src/ng/directive/ngIf.js
@@ -17,7 +17,7 @@
* position within the DOM, such as the `:first-child` or `:last-child` pseudo-classes.
*
* Note that when an element is removed using `ngIf` its scope is destroyed and a new scope
- * is created when the element is restored. The scope created within `ngIf` inherits from
+ * is created when the element is restored. The scope created within `ngIf` inherits from
* its parent scope using
* {@link https://github.com/angular/angular.js/wiki/The-Nuances-of-Scope-Prototypal-Inheritance prototypal inheritance}.
* An important implication of this is if `ngModel` is used within `ngIf` to bind to
@@ -25,7 +25,7 @@
* variable within the child scope will override (hide) the value in the parent scope.
*
* Also, `ngIf` recreates elements using their compiled state. An example of this behavior
- * is if an element's class attribute is directly modified after it's compiled, using something like
+ * is if an element's class attribute is directly modified after it's compiled, using something like
* jQuery's `.addClass()` method, and the element is later removed. When `ngIf` recreates the element
* the added class will be lost because the original compiled state is used to regenerate the element.
*
diff --git a/src/ng/directive/ngInclude.js b/src/ng/directive/ngInclude.js
index e4890494..450677e1 100644
--- a/src/ng/directive/ngInclude.js
+++ b/src/ng/directive/ngInclude.js
@@ -14,7 +14,7 @@
* you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist them} or
* {@link ng.$sce#trustAsResourceUrl wrap them} as trusted values. Refer to Angular's {@link
* ng.$sce Strict Contextual Escaping}.
- *
+ *
* In addition, the browser's
* {@link https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest
* Same Origin Policy} and {@link http://www.w3.org/TR/cors/ Cross-Origin Resource Sharing