Skip to content

Commit 0eb162a

Browse files
committed
upgrade to AngularJS 1.0.0rc12
1 parent 65cb691 commit 0eb162a

14 files changed

+1193
-1295
lines changed

app/lib/angular/angular-cookies.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.0rc11
2+
* @license AngularJS v1.0.0rc12
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -8,14 +8,14 @@
88

99
/**
1010
* @ngdoc overview
11-
* @name angular.module.ngCookies
11+
* @name ngCookies
1212
*/
1313

1414

1515
angular.module('ngCookies', ['ng']).
1616
/**
1717
* @ngdoc object
18-
* @name angular.module.ngCookies.$cookies
18+
* @name ngCookies.$cookies
1919
* @requires $browser
2020
*
2121
* @description
@@ -109,7 +109,7 @@ angular.module('ngCookies', ['ng']).
109109

110110
/**
111111
* @ngdoc object
112-
* @name angular.module.ngCookies.$cookieStore
112+
* @name ngCookies.$cookieStore
113113
* @requires $cookies
114114
*
115115
* @description
@@ -123,8 +123,8 @@ angular.module('ngCookies', ['ng']).
123123
return {
124124
/**
125125
* @ngdoc method
126-
* @name angular.module.ngCookies.$cookieStore#get
127-
* @methodOf angular.module.ngCookies.$cookieStore
126+
* @name ngCookies.$cookieStore#get
127+
* @methodOf ngCookies.$cookieStore
128128
*
129129
* @description
130130
* Returns the value of given cookie key
@@ -138,8 +138,8 @@ angular.module('ngCookies', ['ng']).
138138

139139
/**
140140
* @ngdoc method
141-
* @name angular.module.ngCookies.$cookieStore#put
142-
* @methodOf angular.module.ngCookies.$cookieStore
141+
* @name ngCookies.$cookieStore#put
142+
* @methodOf ngCookies.$cookieStore
143143
*
144144
* @description
145145
* Sets a value for given cookie key
@@ -153,8 +153,8 @@ angular.module('ngCookies', ['ng']).
153153

154154
/**
155155
* @ngdoc method
156-
* @name angular.module.ngCookies.$cookieStore#remove
157-
* @methodOf angular.module.ngCookies.$cookieStore
156+
* @name ngCookies.$cookieStore#remove
157+
* @methodOf ngCookies.$cookieStore
158158
*
159159
* @description
160160
* Remove given cookie

app/lib/angular/angular-cookies.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
AngularJS v1.0.0rc11
2+
AngularJS v1.0.0rc12
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/

app/lib/angular/angular-loader.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.0rc11
2+
* @license AngularJS v1.0.0rc12
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -37,7 +37,7 @@ function setupModuleLoader(window) {
3737
* # Module
3838
*
3939
* A module is a collocation of services, directives, filters, and configure information. Module
40-
* is used to configure the {@link angular.module.AUTO.$injector $injector}.
40+
* is used to configure the {@link AUTO.$injector $injector}.
4141
*
4242
* <pre>
4343
* // Create a new module
@@ -61,7 +61,7 @@ function setupModuleLoader(window) {
6161
* </pre>
6262
*
6363
* However it's more likely that you'll just use
64-
* {@link angular.module.ng.$compileProvider.directive.ngApp ngApp} or
64+
* {@link ng.directive:ngApp ngApp} or
6565
* {@link angular.bootstrap} to simplify this process for you.
6666
*
6767
* @param {!string} name The name of the module to create or retrieve.
@@ -121,7 +121,7 @@ function setupModuleLoader(window) {
121121
* @param {string} name service name
122122
* @param {Function} providerType Construction function for creating new instance of the service.
123123
* @description
124-
* See {@link angular.module.AUTO.$provide#provider $provide.provider()}.
124+
* See {@link AUTO.$provide#provider $provide.provider()}.
125125
*/
126126
provider: invokeLater('$provide', 'provider'),
127127

@@ -132,7 +132,7 @@ function setupModuleLoader(window) {
132132
* @param {string} name service name
133133
* @param {Function} providerFunction Function for creating new instance of the service.
134134
* @description
135-
* See {@link angular.module.AUTO.$provide#factory $provide.factory()}.
135+
* See {@link AUTO.$provide#factory $provide.factory()}.
136136
*/
137137
factory: invokeLater('$provide', 'factory'),
138138

@@ -143,7 +143,7 @@ function setupModuleLoader(window) {
143143
* @param {string} name service name
144144
* @param {Function} constructor A constructor function that will be instantiated.
145145
* @description
146-
* See {@link angular.module.AUTO.$provide#service $provide.service()}.
146+
* See {@link AUTO.$provide#service $provide.service()}.
147147
*/
148148
service: invokeLater('$provide', 'service'),
149149

@@ -154,7 +154,7 @@ function setupModuleLoader(window) {
154154
* @param {string} name service name
155155
* @param {*} object Service instance object.
156156
* @description
157-
* See {@link angular.module.AUTO.$provide#value $provide.value()}.
157+
* See {@link AUTO.$provide#value $provide.value()}.
158158
*/
159159
value: invokeLater('$provide', 'value'),
160160

@@ -166,7 +166,7 @@ function setupModuleLoader(window) {
166166
* @param {*} object Constant value.
167167
* @description
168168
* Because the constant are fixed, they get applied before other provide methods.
169-
* See {@link angular.module.AUTO.$provide#constant $provide.constant()}.
169+
* See {@link AUTO.$provide#constant $provide.constant()}.
170170
*/
171171
constant: invokeLater('$provide', 'constant', 'unshift'),
172172

@@ -177,7 +177,7 @@ function setupModuleLoader(window) {
177177
* @param {string} name Filter name.
178178
* @param {Function} filterFactory Factory function for creating new instance of filter.
179179
* @description
180-
* See {@link angular.module.ng.$filterProvider#register $filterProvider.register()}.
180+
* See {@link ng.$filterProvider#register $filterProvider.register()}.
181181
*/
182182
filter: invokeLater('$filterProvider', 'register'),
183183

@@ -188,7 +188,7 @@ function setupModuleLoader(window) {
188188
* @param {string} name Controller name.
189189
* @param {Function} constructor Controller constructor function.
190190
* @description
191-
* See {@link angular.module.ng.$controllerProvider#register $controllerProvider.register()}.
191+
* See {@link ng.$controllerProvider#register $controllerProvider.register()}.
192192
*/
193193
controller: invokeLater('$controllerProvider', 'register'),
194194

@@ -200,7 +200,7 @@ function setupModuleLoader(window) {
200200
* @param {Function} directiveFactory Factory function for creating new instance of
201201
* directives.
202202
* @description
203-
* See {@link angular.module.ng.$compileProvider.directive $compileProvider.directive()}.
203+
* See {@link ng.$compileProvider.directive $compileProvider.directive()}.
204204
*/
205205
directive: invokeLater('$compileProvider', 'directive'),
206206

app/lib/angular/angular-loader.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
AngularJS v1.0.0rc11
2+
AngularJS v1.0.0rc12
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/

app/lib/angular/angular-resource.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.0rc11
2+
* @license AngularJS v1.0.0rc12
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -8,21 +8,21 @@
88

99
/**
1010
* @ngdoc overview
11-
* @name angular.module.ngResource
11+
* @name ngResource
1212
* @description
1313
*/
1414

1515
/**
1616
* @ngdoc object
17-
* @name angular.module.ngResource.$resource
17+
* @name ngResource.$resource
1818
* @requires $http
1919
*
2020
* @description
2121
* A factory which creates a resource object that lets you interact with
2222
* [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources.
2323
*
2424
* The returned resource object has action methods which provide high-level behaviors without
25-
* the need to interact with the low level {@link angular.module.ng.$http $http} service.
25+
* the need to interact with the low level {@link ng.$http $http} service.
2626
*
2727
* @param {string} url A parameterized URL template with parameters prefixed by `:` as in
2828
* `/user/:username`.
@@ -65,7 +65,7 @@
6565
* 'remove': {method:'DELETE'},
6666
* 'delete': {method:'DELETE'} };
6767
*
68-
* Calling these methods invoke an {@link angular.module.ng.$http} with the specified http method,
68+
* Calling these methods invoke an {@link ng.$http} with the specified http method,
6969
* destination and parameters. When the data is returned from the server then the object is an
7070
* instance of the resource class `save`, `remove` and `delete` actions are available on it as
7171
* methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read,

app/lib/angular/angular-resource.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/lib/angular/angular-sanitize.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.0rc11
2+
* @license AngularJS v1.0.0rc12
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -8,7 +8,7 @@
88

99
/**
1010
* @ngdoc overview
11-
* @name angular.module.ngSanitize
11+
* @name ngSanitize
1212
* @description
1313
*/
1414

@@ -31,7 +31,7 @@
3131

3232
/**
3333
* @ngdoc service
34-
* @name angular.module.ngSanitize.$sanitize
34+
* @name ngSanitize.$sanitize
3535
* @function
3636
*
3737
* @description
@@ -402,13 +402,13 @@ angular.module('ngSanitize', []).value('$sanitize', $sanitize);
402402

403403
/**
404404
* @ngdoc directive
405-
* @name angular.module.ngSanitize.directive.ngBindHtml
405+
* @name ngSanitize.directive:ngBindHtml
406406
*
407407
* @description
408408
* Creates a binding that will sanitize the result of evaluating the `expression` with the
409-
* {@link angular.module.ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
409+
* {@link ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
410410
*
411-
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.
411+
* See {@link ngSanitize.$sanitize $sanitize} docs for examples.
412412
*
413413
* @element ANY
414414
* @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate.
@@ -424,7 +424,7 @@ angular.module('ngSanitize').directive('ngBindHtml', ['$sanitize', function($san
424424
}]);
425425
/**
426426
* @ngdoc filter
427-
* @name angular.module.ngSanitize.filter.linky
427+
* @name ngSanitize.filter:linky
428428
* @function
429429
*
430430
* @description

app/lib/angular/angular-sanitize.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)