Skip to content

Commit

Permalink
(js/css) Update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
InverseBot committed Aug 9, 2018
1 parent 9f2bcf3 commit 038f93d
Show file tree
Hide file tree
Showing 15 changed files with 1,688 additions and 795 deletions.
257 changes: 174 additions & 83 deletions UI/WebServerResources/js/vendor/angular-animate.js

Large diffs are not rendered by default.

106 changes: 54 additions & 52 deletions UI/WebServerResources/js/vendor/angular-animate.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions UI/WebServerResources/js/vendor/angular-animate.min.js.map

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions UI/WebServerResources/js/vendor/angular-aria.js
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.7.2
* @license AngularJS v1.7.3
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand Down Expand Up @@ -63,7 +63,7 @@
var ARIA_DISABLE_ATTR = 'ngAriaDisable';

var ngAriaModule = angular.module('ngAria', ['ng']).
info({ angularVersion: '1.7.2' }).
info({ angularVersion: '1.7.3' }).
provider('$aria', $AriaProvider);

/**
Expand Down Expand Up @@ -392,7 +392,10 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
if ($aria.config('bindKeydown') && !attr.ngKeydown && !attr.ngKeypress && !attr.ngKeyup) {
elem.on('keydown', function(event) {
var keyCode = event.which || event.keyCode;
if (keyCode === 32 || keyCode === 13) {

if (keyCode === 13 || keyCode === 32) {
// Prevent the default browser behavior (e.g. scrolling when pressing spacebar).
event.preventDefault();
scope.$apply(callback);
}

Expand Down
18 changes: 9 additions & 9 deletions UI/WebServerResources/js/vendor/angular-aria.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 038f93d

Please sign in to comment.