From 5d0d34ae72a9ca47f1b2dabda60711ad16ee9313 Mon Sep 17 00:00:00 2001
From: Misko Hevery
Date: Wed, 19 Jan 2011 12:16:38 -0800
Subject: remove trailing whitespace
---
src/Angular.js | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/Angular.js b/src/Angular.js
index 722dc409..30360900 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -841,20 +841,20 @@ function toKeyValue(obj) {
*
* ## The angular distribution
* Note that there are two versions of the angular javascript file that you can use:
- *
+ *
* * `angular.js` - the development version - this file is unobfuscated, uncompressed, and thus
* human-readable and useful when developing your angular applications.
* * `angular.min.js` - the production version - this is a minified and obfuscated version of
* `angular.js`. You want to use this version when you want to load a smaller but functionally
* equivalent version of the code in your application. We use the Closure compiler to create this
* file.
- *
- *
+ *
+ *
* ## Auto-bootstrap with `ng:autobind`
* The simplest way to get an
<!doctype html>
<html xmlns:ng="http://angularjs.org">
@@ -916,11 +916,11 @@ function toKeyValue(obj) {
* ## Manual Bootstrap
* Using auto-bootstrap is a handy way to start using , but advanced users who want more
* control over the initialization process might prefer to use manual bootstrap instead.
- *
+ *
* The best way to get started with manual bootstraping is to look at the magic behind `ng:autobind`
* by writing out each step of the autobind process explicitly. Note that the following code is
* equivalent to the code in the previous section.
- *
+ *
*
<!doctype html>
<html xmlns:ng="http://angularjs.org">
@@ -941,9 +941,9 @@ function toKeyValue(obj) {
</body>
</html>
*
- *
+ *
* This is the sequence that your code should follow if you're bootstrapping angular on your own:
- *
+ *
* * After the page is loaded, find the root of the HTML template, which is typically the root of
* the document.
* * Run the HTML compiler, which converts the templates into an executable, bi-directionally bound
@@ -953,7 +953,7 @@ function toKeyValue(obj) {
* ##XML Namespace
* *IMPORTANT:* When using you must declare the ng namespace using the xmlns tag. If you
* don't declare the namespace, Internet Explorer does not render widgets properly.
- *
+ *
*
* <html xmlns:ng="http://angularjs.org">
*
@@ -964,7 +964,7 @@ function toKeyValue(obj) {
* to form the fully qualified widget name. For example, you could map the alias `my` to your domain
* and create a widget called my:widget. To create your own namespace, simply add another xmlsn tag
* to your page, create an alias, and set it to your unique domain:
- *
+ *
*
* <html xmlns:ng="http://angularjs.org" xmlns:my="http://mydomain.com">
*
@@ -973,7 +973,7 @@ function toKeyValue(obj) {
* ## Global Object
* The script creates a single global variable `angular` in the global namespace. All
* APIs are bound to fields of this global object.
- *
+ *
*/
function angularInit(config){
if (config.autobind) {
--
cgit v1.2.3