Skip to content

Commit 845acc9

Browse files
author
Hirav Gandhi
committed
Bump version to 1.3.10 (closes #80)
1 parent d058b4d commit 845acc9

25 files changed

+304
-176
lines changed

lib/angularjs-rails/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module AngularJS
22
module Rails
3-
VERSION = "1.3.9"
4-
UNSTABLE_VERSION = "1.3.9"
3+
VERSION = "1.3.10"
4+
UNSTABLE_VERSION = "1.3.10"
55
end
66
end

vendor/assets/javascripts/angular-animate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.3.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -1875,7 +1875,7 @@ angular.module('ngAnimate', ['ng'])
18751875
return;
18761876
}
18771877

1878-
if (!staggerTime && styles) {
1878+
if (!staggerTime && styles && Object.keys(styles).length > 0) {
18791879
if (!timings.transitionDuration) {
18801880
element.css('transition', timings.animationDuration + 's linear all');
18811881
appliedStyles.push('transition');

vendor/assets/javascripts/angular-aria.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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

vendor/assets/javascripts/angular-cookies.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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

vendor/assets/javascripts/angular-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.3.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -55,7 +55,7 @@ function minErr(module, ErrorConstructor) {
5555
return match;
5656
});
5757

58-
message = message + '\nhttp://errors.angularjs.org/1.3.9/' +
58+
message = message + '\nhttp://errors.angularjs.org/1.3.10/' +
5959
(module ? module + '/' : '') + code;
6060
for (i = 2; i < arguments.length; i++) {
6161
message = message + (i == 2 ? '?' : '&') + 'p' + (i - 2) + '=' +

vendor/assets/javascripts/angular-messages.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.3.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -178,7 +178,7 @@ angular.module('ngMessages', [])
178178
* at a time and this depends on the prioritization of the messages within the template. (This can
179179
* be changed by using the ng-messages-multiple on the directive container.)
180180
*
181-
* A remote template can also be used to promote message reuseability and messages can also be
181+
* A remote template can also be used to promote message reusability and messages can also be
182182
* overridden.
183183
*
184184
* {@link module:ngMessages Click here} to learn more about `ngMessages` and `ngMessage`.

vendor/assets/javascripts/angular-mocks.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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

vendor/assets/javascripts/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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

vendor/assets/javascripts/angular-route.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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

vendor/assets/javascripts/angular-sanitize.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.9
2+
* @license AngularJS v1.3.10
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)