mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
(js/css) Update generated files
This commit is contained in:
+6
-4
@@ -2,7 +2,7 @@
|
||||
* Angular Material Design
|
||||
* https://github.com/angular/material
|
||||
* @license MIT
|
||||
* v1.0.3-master-3d6077b
|
||||
* v1.0.3-master-0918596
|
||||
*/
|
||||
(function( window, angular, undefined ){
|
||||
"use strict";
|
||||
@@ -8362,13 +8362,15 @@ function iosScrollFix(node) {
|
||||
* @param {Date=} opt_date Date to check. If not given, defaults to the datepicker's model value.
|
||||
*/
|
||||
DatePickerCtrl.prototype.updateErrorState = function(opt_date) {
|
||||
// Force all dates to midnight in order to ignore the time portion.
|
||||
var date = this.dateUtil.createDateAtMidnight(opt_date || this.date);
|
||||
var date = opt_date || this.date;
|
||||
|
||||
// Clear any existing errors to get rid of anything that's no longer relevant.
|
||||
this.clearErrorState();
|
||||
|
||||
if (this.dateUtil.isValidDate(date)) {
|
||||
// Force all dates to midnight in order to ignore the time portion.
|
||||
date = this.dateUtil.createDateAtMidnight(date);
|
||||
|
||||
if (this.dateUtil.isValidDate(this.minDate)) {
|
||||
var minDate = this.dateUtil.createDateAtMidnight(this.minDate);
|
||||
this.ngModelCtrl.$setValidity('mindate', date >= minDate);
|
||||
@@ -24285,4 +24287,4 @@ angular.module("material.core").constant("$MD_THEME_CSS", "md-autocomplete.md-TH
|
||||
})();
|
||||
|
||||
|
||||
})(window, window.angular);;window.ngMaterial={version:{full: "1.0.3-master-3d6077b"}};
|
||||
})(window, window.angular);;window.ngMaterial={version:{full: "1.0.3-master-0918596"}};
|
||||
Reference in New Issue
Block a user