really hide registration types without submissions
[angular-drzb] / app / index-async.html
index f589385..5a042ca 100644 (file)
@@ -1,21 +1,21 @@
 <!doctype html>
-<html xmlns:ng="http://angularjs.org/">
+<html lang="en">
 <head>
   <meta charset="utf-8">
   <style>
-    [ng\\:cloak] {
+    [ng-cloak] {
       display: none;
     }
   </style>
   <script>
     // include angular loader, which allows the files to load in any order
     /*
-     AngularJS v0.10.6-5cdfe45a
+     AngularJS v1.0.0rc1
      (c) 2010-2012 AngularJS http://angularjs.org
      License: MIT
     */
-    'use strict';(function(i){function d(a,b,c){return a[b]||(a[b]=c())}return d(d(i,"angular",Object),"module",function(){var a={};return function(b,c,e){c&&a.hasOwnProperty(b)&&(a[b]=null);return d(a,b,function(){function a(b,c){return function(){d.push([b,c,arguments]);return f}}if(!c)throw Error("No module: "+b);var d=[],g=[],h=a("$injector","invoke"),f={_invokeQueue:d,_runBlocks:g,requires:c,name:b,service:a("$provide","service"),factory:a("$provide","factory"),value:a("$provide","value"),filter:a("$filterProvider",
-    "register"),config:h,run:function(a){g.push(a);return this}};e&&h(e);return f})}})})(window);
+    'use strict';(function(i){function d(c,a,e){return c[a]||(c[a]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(a,e,f){e&&c.hasOwnProperty(a)&&(c[a]=null);return d(c,a,function(){function b(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+a);var c=[],d=[],h=b("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:a,provider:b("$provide","provider"),factory:b("$provide","factory"),service:b("$provide","service"),
+    value:b("$provide","value"),constant:b("$provide","constant","unshift"),filter:b("$filterProvider","register"),directive:b("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window);
 
     // include a third-party async loader library
     /*!
       'js/services.js',
       'js/controllers.js',
       'js/filters.js',
-      'js/widgets.js'
+      'js/directives.js'
     ], function() {
       // when all is done, execute bootstrap angular application
       angular.bootstrap(document, ['myApp']);
     });
   </script>
-  <title>my angular app</title>
-  <link rel="stylesheet" href="css/app.css"/>
+  <title>My AngularJS App</title>
+  <link rel="stylesheet" href="css/app.css">
 </head>
 <body>
   <ul class="menu">
     <li><a href="#/view2">view2</a></li>
   </ul>
 
-  <ng:view></ng:view>
+  <div ng-view></div>
 
   <div>Angular seed app: v<span app-version></span></div>
 
-</head>
 </body>
 </html>