Skip to content

Commit 643d16c

Browse files
committed
upgrade to AngularJS 1.0.0rc8 blooming-touch
1 parent 7cd74c0 commit 643d16c

14 files changed

+1423
-1112
lines changed

app/lib/angular/angular-cookies.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* @license AngularJS v1.0.0rc7
2+
* @license AngularJS v1.0.0rc8
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
6-
(function(angular) {
6+
(function(window, angular, undefined) {
77
'use strict';
88

99
/**
@@ -168,4 +168,4 @@ angular.module('ngCookies', ['ng']).
168168

169169
}]);
170170

171-
})(window.angular);
171+
})(window, window.angular);
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
AngularJS v1.0.0rc7
2+
AngularJS v1.0.0rc8
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/
6-
(function(f){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,c){var b={},g={},h,i=!1,j=f.copy,k=f.isUndefined;c.addPollFn(function(){var a=c.cookies();h!=a&&(h=a,j(a,g),j(a,b),i&&d.$apply())})();i=!0;d.$watch(function(){var a,e,d;for(a in g)k(b[a])&&c.cookies(a,void 0);for(a in b)e=b[a],f.isString(e)?e!==g[a]&&(c.cookies(a,e),d=!0):f.isDefined(g[a])?b[a]=g[a]:delete b[a];if(d)for(a in e=c.cookies(),b)b[a]!==e[a]&&(k(e[a])?delete b[a]:b[a]=e[a])});return b}]).factory("$cookieStore",
7-
["$cookies",function(d){return{get:function(c){return f.fromJson(d[c])},put:function(c,b){d[c]=f.toJson(b)},remove:function(c){delete d[c]}}}])})(window.angular);
6+
(function(m,f,l){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,c){var b={},g={},h,i=!1,j=f.copy,k=f.isUndefined;c.addPollFn(function(){var a=c.cookies();h!=a&&(h=a,j(a,g),j(a,b),i&&d.$apply())})();i=!0;d.$watch(function(){var a,e,d;for(a in g)k(b[a])&&c.cookies(a,l);for(a in b)e=b[a],f.isString(e)?e!==g[a]&&(c.cookies(a,e),d=!0):f.isDefined(g[a])?b[a]=g[a]:delete b[a];if(d)for(a in e=c.cookies(),b)b[a]!==e[a]&&(k(e[a])?delete b[a]:b[a]=e[a])});return b}]).factory("$cookieStore",
7+
["$cookies",function(d){return{get:function(c){return f.fromJson(d[c])},put:function(c,b){d[c]=f.toJson(b)},remove:function(c){delete d[c]}}}])})(window,window.angular);

app/lib/angular/angular-loader.js

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

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.0rc7
2+
AngularJS v1.0.0rc8
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/

app/lib/angular/angular-resource.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* @license AngularJS v1.0.0rc7
2+
* @license AngularJS v1.0.0rc8
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
6-
(function(angular) {
6+
(function(window, angular, undefined) {
77
'use strict';
88

99
/**
@@ -425,4 +425,4 @@ angular.module('ngResource', ['ng']).
425425
return ResourceFactory;
426426
}]);
427427

428-
})(window.angular);
428+
})(window, window.angular);

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

Lines changed: 6 additions & 6 deletions
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: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* @license AngularJS v1.0.0rc7
2+
* @license AngularJS v1.0.0rc8
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
6-
(function(angular) {
6+
(function(window, angular, undefined) {
77
'use strict';
88

99
/**
@@ -406,8 +406,7 @@ angular.module('ngSanitize', []).value('$sanitize', $sanitize);
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
410-
* current element.
409+
* {@link angular.module.ngSanitize.$sanitize $sanitize} service and innerHTML the result into the current element.
411410
*
412411
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.
413412
*
@@ -530,4 +529,4 @@ angular.module('ngSanitize').filter('linky', function() {
530529
};
531530
});
532531

533-
})(window.angular);
532+
})(window, window.angular);

app/lib/angular/angular-sanitize.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.

0 commit comments

Comments
 (0)