diff options
| author | Misko Hevery | 2010-01-10 08:58:57 -0800 |
|---|---|---|
| committer | Misko Hevery | 2010-01-10 08:58:57 -0800 |
| commit | 1aba6b53b88c70b61a0cc991b1371739305d117b (patch) | |
| tree | d1d21efbd2df191824b7a02020190df0195f2fbb /example | |
| parent | 9b9a0dadcce82ae42ac09ad396d647739af20a06 (diff) | |
| download | angular.js-1aba6b53b88c70b61a0cc991b1371739305d117b.tar.bz2 | |
basic calculator works with minified.js, lots of references still broken
Diffstat (limited to 'example')
| -rw-r--r-- | example/calculator-manual_init.html | 3 | ||||
| -rw-r--r-- | example/calculator-minified_init.html | 21 |
2 files changed, 23 insertions, 1 deletions
diff --git a/example/calculator-manual_init.html b/example/calculator-manual_init.html index 175d07b9..1a6571c2 100644 --- a/example/calculator-manual_init.html +++ b/example/calculator-manual_init.html @@ -1,7 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <script type="text/javascript" src="../angular.js#autoBind=false"></script> + <script type="text/javascript" src="../lib/jquery/jquery-1.3.2.js"></script> + <script type="text/javascript" src="../angular.js"></script> <script type="text/javascript"> $(document).ready(function(){ var scope = angular.compile(document); diff --git a/example/calculator-minified_init.html b/example/calculator-minified_init.html new file mode 100644 index 00000000..4f113f87 --- /dev/null +++ b/example/calculator-minified_init.html @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <script type="text/javascript" src="../lib/underscore/underscore.js"></script> + <script type="text/javascript" src="../lib/jquery/jquery-1.3.2.js"></script> + <script type="text/javascript" src="../angular-minified.js"></script> + <script type="text/javascript"> + $(document).ready(function(){ + scope = angular.compile(document); + scope.set('a', 3); + scope.updateView(); + }); + </script> + </head> + <body> + Quantity: <input type="text" name="a" value="2"> + * + Cost: <input type="text" name="b" value="3.4"> + = {{a * b | currency}} + </body> +</html> |
