(js/css) Update generated files

This commit is contained in:
InverseBot
2016-03-14 01:37:31 -04:00
parent 9a4d2c6b1c
commit dd3361bad3
2 changed files with 13 additions and 6 deletions
+9 -2
View File
@@ -2,7 +2,7 @@
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v1.0.6-master-48a3b9c
* v1.0.6-master-06e4ef9
*/
(function( window, angular, undefined ){
"use strict";
@@ -6746,6 +6746,7 @@ function MdCheckboxDirective(inputDirective, $mdAria, $mdConstant, $mdTheming, $
// **********************************************************
function compile (tElement, tAttrs) {
var container = tElement.children();
tAttrs.type = 'checkbox';
tAttrs.tabindex = tAttrs.tabindex || '0';
@@ -6759,6 +6760,12 @@ function MdCheckboxDirective(inputDirective, $mdAria, $mdConstant, $mdTheming, $
}
});
// Redirect focus events to the root element, because IE11 is always focusing the container element instead
// of the md-checkbox element. This causes issues when using ngModelOptions: `updateOnBlur`
container.on('focus', function() {
tElement.focus();
});
return function postLink(scope, element, attr, ngModelCtrl) {
ngModelCtrl = ngModelCtrl || $mdUtil.fakeNgModel();
$mdTheming(element);
@@ -25242,4 +25249,4 @@ angular.module("material.core").constant("$MD_THEME_CSS", "/* Only used with Th
})();
})(window, window.angular);;window.ngMaterial={version:{full: "1.0.6-master-48a3b9c"}};
})(window, window.angular);;window.ngMaterial={version:{full: "1.0.6-master-06e4ef9"}};
File diff suppressed because one or more lines are too long