Skip to content

Commit 1863fd5

Browse files
committed
Upgrade to AngularJS 1.2.1
1 parent 5baf5dd commit 1863fd5

File tree

277 files changed

+43715
-33337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

277 files changed

+43715
-33337
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ angularjs-bower
33

44
bower angularjs package... will try to keep it up to date :)
55

6-
Current, or latest package holds angularjs v1.1.5.
6+
Current, or latest package holds angularjs v1.2.1.
77

88
Angular bugs/issues should be reported to angularjs team.
99

angular-animate.js

+1,226
Large diffs are not rendered by default.

angular-animate.min.js

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-animate.min.js.map

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-cookies.js

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
/**
2-
* @license AngularJS v1.1.5
2+
* @license AngularJS v1.2.1
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
6-
(function(window, angular, undefined) {
7-
'use strict';
6+
(function(window, angular, undefined) {'use strict';
87

98
/**
109
* @ngdoc overview
1110
* @name ngCookies
11+
* @description
12+
*
13+
* # ngCookies
14+
*
15+
* The `ngCookies` module provides a convenient wrapper for reading and writing browser cookies.
16+
*
17+
* {@installModule cookies}
18+
*
19+
* <div doc-module-components="ngCookies"></div>
20+
*
21+
* See {@link ngCookies.$cookies `$cookies`} and
22+
* {@link ngCookies.$cookieStore `$cookieStore`} for usage.
1223
*/
1324

1425

@@ -24,6 +35,8 @@ angular.module('ngCookies', ['ng']).
2435
* Only a simple Object is exposed and by adding or removing properties to/from
2536
* this object, new cookies are created/deleted at the end of current $eval.
2637
*
38+
* Requires the {@link ngCookies `ngCookies`} module to be installed.
39+
*
2740
* @example
2841
<doc:example>
2942
<doc:source>
@@ -68,7 +81,8 @@ angular.module('ngCookies', ['ng']).
6881

6982

7083
/**
71-
* Pushes all the cookies from the service to the browser and verifies if all cookies were stored.
84+
* Pushes all the cookies from the service to the browser and verifies if all cookies were
85+
* stored.
7286
*/
7387
function push() {
7488
var name,
@@ -128,6 +142,9 @@ angular.module('ngCookies', ['ng']).
128142
* Provides a key-value (string-object) storage, that is backed by session cookies.
129143
* Objects put or retrieved from this storage are automatically serialized or
130144
* deserialized by angular's toJson/fromJson.
145+
*
146+
* Requires the {@link ngCookies `ngCookies`} module to be installed.
147+
*
131148
* @example
132149
*/
133150
factory('$cookieStore', ['$cookies', function($cookies) {

angular-cookies.min.js

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-cookies.min.js.map

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-csp.css

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/* Include this file in your html if you are using the CSP mode. */
2+
3+
@charset "UTF-8";
4+
5+
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6+
.ng-cloak, .x-ng-cloak,
7+
.ng-hide {
8+
display: none !important;
9+
}
10+
11+
ng\:form {
12+
display: block;
13+
}
14+
15+
/* The styles below ensure that the CSS transition will ALWAYS
16+
* animate and close. A nasty bug occurs with CSS transitions where
17+
* when the active class isn't set, or if the active class doesn't
18+
* contain any styles to transition to, then, if ngAnimate is used,
19+
* it will appear as if the webpage is broken due to the forever hanging
20+
* animations. The clip (!ie) and zoom (ie) CSS properties are used
21+
* since they trigger a transition without making the browser
22+
* animate anything and they're both highly underused CSS properties */
23+
.ng-animate-start { clip:rect(0, auto, auto, 0); -ms-zoom:1.0001; }
24+
.ng-animate-active { clip:rect(-1px, auto, auto, 0); -ms-zoom:1; }

0 commit comments

Comments
 (0)