Skip to content

Commit f8719f2

Browse files
committed
update(angular): bump to 1.3.0-beta.3
1 parent f7a6fe1 commit f8719f2

27 files changed

+732
-463
lines changed

app/index-async.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
// include angular loader, which allows the files to load in any order
1212

1313
/*
14-
AngularJS v1.3.0-beta.2
14+
AngularJS v1.3.0-beta.3
1515
(c) 2010-2014 Google, Inc. http://angularjs.org
1616
License: MIT
1717
*/
18-
(function(){'use strict';function d(a){return function(){var c=arguments[0],b,c="["+(a?a+":":"")+c+"] http://errors.angularjs.org/1.3.0-beta.2/"+(a?a+"/":"")+c;for(b=1;b<arguments.length;b++)c=c+(1==b?"?":"&")+"p"+(b-1)+"="+encodeURIComponent("function"==typeof arguments[b]?arguments[b].toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof arguments[b]?"undefined":"string"!=typeof arguments[b]?JSON.stringify(arguments[b]):arguments[b]);return Error(c)}}(function(a){var c=d("$injector"),b=d("ng");
18+
(function(){'use strict';function d(a){return function(){var c=arguments[0],b,c="["+(a?a+":":"")+c+"] http://errors.angularjs.org/1.3.0-beta.3/"+(a?a+"/":"")+c;for(b=1;b<arguments.length;b++)c=c+(1==b?"?":"&")+"p"+(b-1)+"="+encodeURIComponent("function"==typeof arguments[b]?arguments[b].toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof arguments[b]?"undefined":"string"!=typeof arguments[b]?JSON.stringify(arguments[b]):arguments[b]);return Error(c)}}(function(a){var c=d("$injector"),b=d("ng");
1919
a=a.angular||(a.angular={});a.$$minErr=a.$$minErr||d;return a.module||(a.module=function(){var a={};return function(e,d,f){if("hasOwnProperty"===e)throw b("badname","module");d&&a.hasOwnProperty(e)&&(a[e]=null);return a[e]||(a[e]=function(){function a(c,d,e){return function(){b[e||"push"]([c,d,arguments]);return g}}if(!d)throw c("nomod",e);var b=[],h=[],k=a("$injector","invoke"),g={_invokeQueue:b,_runBlocks:h,requires:d,name:e,provider:a("$provide","provider"),factory:a("$provide","factory"),service:a("$provide",
2020
"service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),animation:a("$animateProvider","register"),filter:a("$filterProvider","register"),controller:a("$controllerProvider","register"),directive:a("$compileProvider","directive"),config:k,run:function(a){h.push(a);return this}};f&&k(f);return g}())}}())})(window)})(window);
2121
//# sourceMappingURL=angular-loader.min.js.map

app/lib/angular/angular-animate.js

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

app/lib/angular/angular-animate.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-cookies.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.3.0-beta.2
2+
* @license AngularJS v1.3.0-beta.3
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -30,8 +30,9 @@ angular.module('ngCookies', ['ng']).
3030
* @description
3131
* Provides read/write access to browser's cookies.
3232
*
33-
* Only a simple Object is exposed and by adding or removing properties to/from
34-
* this object, new cookies are created/deleted at the end of current $eval.
33+
* Only a simple Object is exposed and by adding or removing properties to/from this object, new
34+
* cookies are created/deleted at the end of current $eval.
35+
* The object's properties can only be strings.
3536
*
3637
* Requires the {@link ngCookies `ngCookies`} module to be installed.
3738
*
@@ -99,12 +100,10 @@ angular.module('ngCookies', ['ng']).
99100
for(name in cookies) {
100101
value = cookies[name];
101102
if (!angular.isString(value)) {
102-
if (angular.isDefined(lastCookies[name])) {
103-
cookies[name] = lastCookies[name];
104-
} else {
105-
delete cookies[name];
106-
}
107-
} else if (value !== lastCookies[name]) {
103+
value = '' + value;
104+
cookies[name] = value;
105+
}
106+
if (value !== lastCookies[name]) {
108107
$browser.cookies(name, value);
109108
updated = true;
110109
}

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

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/lib/angular/angular-loader.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.3.0-beta.2
2+
* @license AngularJS v1.3.0-beta.3
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -69,7 +69,7 @@ function minErr(module) {
6969
return match;
7070
});
7171

72-
message = message + '\nhttp://errors.angularjs.org/1.3.0-beta.2/' +
72+
message = message + '\nhttp://errors.angularjs.org/1.3.0-beta.3/' +
7373
(module ? module + '/' : '') + code;
7474
for (i = 2; i < arguments.length; i++) {
7575
message = message + (i == 2 ? '?' : '&') + 'p' + (i-2) + '=' +
@@ -135,10 +135,10 @@ function setupModuleLoader(window) {
135135
* myModule.value('appName', 'MyCoolApp');
136136
*
137137
* // configure existing services inside initialization blocks.
138-
* myModule.config(function($locationProvider) {
138+
* myModule.config(['$locationProvider', function($locationProvider) {
139139
* // Configure existing providers
140140
* $locationProvider.hashPrefix('!');
141-
* });
141+
* }]);
142142
* ```
143143
*
144144
* Then you can create an injector and load your modules like this:

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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/lib/angular/angular-resource.js

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

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.

0 commit comments

Comments
 (0)