Skip to content

Commit

Permalink
upgrade to AngularJS 1.0.0rc12
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Jun 12, 2012
1 parent 65cb691 commit 0eb162a
Show file tree
Hide file tree
Showing 14 changed files with 1,193 additions and 1,295 deletions.
20 changes: 10 additions & 10 deletions app/lib/angular/angular-cookies.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.0.0rc11
* @license AngularJS v1.0.0rc12
* (c) 2010-2012 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand All @@ -8,14 +8,14 @@

/**
* @ngdoc overview
* @name angular.module.ngCookies
* @name ngCookies
*/


angular.module('ngCookies', ['ng']).
/**
* @ngdoc object
* @name angular.module.ngCookies.$cookies
* @name ngCookies.$cookies
* @requires $browser
*
* @description
Expand Down Expand Up @@ -109,7 +109,7 @@ angular.module('ngCookies', ['ng']).

/**
* @ngdoc object
* @name angular.module.ngCookies.$cookieStore
* @name ngCookies.$cookieStore
* @requires $cookies
*
* @description
Expand All @@ -123,8 +123,8 @@ angular.module('ngCookies', ['ng']).
return {
/**
* @ngdoc method
* @name angular.module.ngCookies.$cookieStore#get
* @methodOf angular.module.ngCookies.$cookieStore
* @name ngCookies.$cookieStore#get
* @methodOf ngCookies.$cookieStore
*
* @description
* Returns the value of given cookie key
Expand All @@ -138,8 +138,8 @@ angular.module('ngCookies', ['ng']).

/**
* @ngdoc method
* @name angular.module.ngCookies.$cookieStore#put
* @methodOf angular.module.ngCookies.$cookieStore
* @name ngCookies.$cookieStore#put
* @methodOf ngCookies.$cookieStore
*
* @description
* Sets a value for given cookie key
Expand All @@ -153,8 +153,8 @@ angular.module('ngCookies', ['ng']).

/**
* @ngdoc method
* @name angular.module.ngCookies.$cookieStore#remove
* @methodOf angular.module.ngCookies.$cookieStore
* @name ngCookies.$cookieStore#remove
* @methodOf ngCookies.$cookieStore
*
* @description
* Remove given cookie
Expand Down
2 changes: 1 addition & 1 deletion app/lib/angular/angular-cookies.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
AngularJS v1.0.0rc11
AngularJS v1.0.0rc12
(c) 2010-2012 Google, Inc. http://angularjs.org
License: MIT
*/
Expand Down
22 changes: 11 additions & 11 deletions app/lib/angular/angular-loader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.0.0rc11
* @license AngularJS v1.0.0rc12
* (c) 2010-2012 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand Down Expand Up @@ -37,7 +37,7 @@ function setupModuleLoader(window) {
* # Module
*
* A module is a collocation of services, directives, filters, and configure information. Module
* is used to configure the {@link angular.module.AUTO.$injector $injector}.
* is used to configure the {@link AUTO.$injector $injector}.
*
* <pre>
* // Create a new module
Expand All @@ -61,7 +61,7 @@ function setupModuleLoader(window) {
* </pre>
*
* However it's more likely that you'll just use
* {@link angular.module.ng.$compileProvider.directive.ngApp ngApp} or
* {@link ng.directive:ngApp ngApp} or
* {@link angular.bootstrap} to simplify this process for you.
*
* @param {!string} name The name of the module to create or retrieve.
Expand Down Expand Up @@ -121,7 +121,7 @@ function setupModuleLoader(window) {
* @param {string} name service name
* @param {Function} providerType Construction function for creating new instance of the service.
* @description
* See {@link angular.module.AUTO.$provide#provider $provide.provider()}.
* See {@link AUTO.$provide#provider $provide.provider()}.
*/
provider: invokeLater('$provide', 'provider'),

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

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

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

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

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion app/lib/angular/angular-loader.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
AngularJS v1.0.0rc11
AngularJS v1.0.0rc12
(c) 2010-2012 Google, Inc. http://angularjs.org
License: MIT
*/
Expand Down
10 changes: 5 additions & 5 deletions app/lib/angular/angular-resource.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.0.0rc11
* @license AngularJS v1.0.0rc12
* (c) 2010-2012 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand All @@ -8,21 +8,21 @@

/**
* @ngdoc overview
* @name angular.module.ngResource
* @name ngResource
* @description
*/

/**
* @ngdoc object
* @name angular.module.ngResource.$resource
* @name ngResource.$resource
* @requires $http
*
* @description
* A factory which creates a resource object that lets you interact with
* [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources.
*
* The returned resource object has action methods which provide high-level behaviors without
* the need to interact with the low level {@link angular.module.ng.$http $http} service.
* the need to interact with the low level {@link ng.$http $http} service.
*
* @param {string} url A parameterized URL template with parameters prefixed by `:` as in
* `/user/:username`.
Expand Down Expand Up @@ -65,7 +65,7 @@
* 'remove': {method:'DELETE'},
* 'delete': {method:'DELETE'} };
*
* Calling these methods invoke an {@link angular.module.ng.$http} with the specified http method,
* Calling these methods invoke an {@link ng.$http} with the specified http method,
* destination and parameters. When the data is returned from the server then the object is an
* instance of the resource class `save`, `remove` and `delete` actions are available on it as
* methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read,
Expand Down
2 changes: 1 addition & 1 deletion app/lib/angular/angular-resource.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions app/lib/angular/angular-sanitize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.0.0rc11
* @license AngularJS v1.0.0rc12
* (c) 2010-2012 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand All @@ -8,7 +8,7 @@

/**
* @ngdoc overview
* @name angular.module.ngSanitize
* @name ngSanitize
* @description
*/

Expand All @@ -31,7 +31,7 @@

/**
* @ngdoc service
* @name angular.module.ngSanitize.$sanitize
* @name ngSanitize.$sanitize
* @function
*
* @description
Expand Down Expand Up @@ -402,13 +402,13 @@ angular.module('ngSanitize', []).value('$sanitize', $sanitize);

/**
* @ngdoc directive
* @name angular.module.ngSanitize.directive.ngBindHtml
* @name ngSanitize.directive:ngBindHtml
*
* @description
* Creates a binding that will sanitize the result of evaluating the `expression` with the
* {@link angular.module.ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
* {@link ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
*
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.
* See {@link ngSanitize.$sanitize $sanitize} docs for examples.
*
* @element ANY
* @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate.
Expand All @@ -424,7 +424,7 @@ angular.module('ngSanitize').directive('ngBindHtml', ['$sanitize', function($san
}]);
/**
* @ngdoc filter
* @name angular.module.ngSanitize.filter.linky
* @name ngSanitize.filter:linky
* @function
*
* @description
Expand Down
2 changes: 1 addition & 1 deletion app/lib/angular/angular-sanitize.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0eb162a

Please sign in to comment.