Skip to content

Commit a6c5c8f

Browse files
committed
v1.6.8-build.5516+sha.6d5ef34
1 parent 482b5f5 commit a6c5c8f

34 files changed

+79
-76
lines changed
7.67 MB
Binary file not shown.

snapshot/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.6.8-build.5515+sha.00815db
2+
* @license AngularJS v1.6.8-build.5516+sha.6d5ef34
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -4139,7 +4139,7 @@ angular.module('ngAnimate', [], function initAngularHelpers() {
41394139
isFunction = angular.isFunction;
41404140
isElement = angular.isElement;
41414141
})
4142-
.info({ angularVersion: '1.6.8-build.5515+sha.00815db' })
4142+
.info({ angularVersion: '1.6.8-build.5516+sha.6d5ef34' })
41434143
.directive('ngAnimateSwap', ngAnimateSwapDirective)
41444144

41454145
.directive('ngAnimateChildren', $$AnimateChildrenDirective)

snapshot/angular-animate.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.

snapshot/angular-aria.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5515+sha.00815db
2+
* @license AngularJS v1.6.8-build.5516+sha.6d5ef34
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -57,7 +57,7 @@
5757
* {@link guide/accessibility Developer Guide}.
5858
*/
5959
var ngAriaModule = angular.module('ngAria', ['ng']).
60-
info({ angularVersion: '1.6.8-build.5515+sha.00815db' }).
60+
info({ angularVersion: '1.6.8-build.5516+sha.6d5ef34' }).
6161
provider('$aria', $AriaProvider);
6262

6363
/**
@@ -229,7 +229,10 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
229229
.directive('ngModel', ['$aria', function($aria) {
230230

231231
function shouldAttachAttr(attr, normalizedAttr, elem, allowBlacklistEls) {
232-
return $aria.config(normalizedAttr) && !elem.attr(attr) && (allowBlacklistEls || !isNodeOneOf(elem, nodeBlackList));
232+
return $aria.config(normalizedAttr) &&
233+
!elem.attr(attr) &&
234+
(allowBlacklistEls || !isNodeOneOf(elem, nodeBlackList)) &&
235+
(elem.attr('type') !== 'hidden' || elem[0].nodeName !== 'INPUT');
233236
}
234237

235238
function shouldAttachRole(role, elem) {

snapshot/angular-aria.min.js

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

0 commit comments

Comments
 (0)