mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-12 05:49:42 +00:00
(js/css) Update generated files
This commit is contained in:
+9
-2
@@ -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"}};
|
||||
+4
-4
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user