(js/css) Update generated files

pull/190/head
Francis Lachapelle 2016-01-27 11:33:16 -05:00
parent 841e29b091
commit 85e181edc4
6 changed files with 14 additions and 12 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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"}};

File diff suppressed because one or more lines are too long