MDL-74110 forms: disable calendar link when date selector disabled.
This commit is contained in:
+5
-5
@@ -360,14 +360,14 @@ CALENDAR.prototype = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggle_calendar_image: function() {
|
toggle_calendar_image: function() {
|
||||||
// If the enable checkbox is det checked, disable the image.
|
// If the enable checkbox is not checked, disable the calendar image and prevent focus.
|
||||||
if (!this.enablecheckbox.get('checked')) {
|
if (!this.enablecheckbox.get('checked')) {
|
||||||
this.calendarimage.set('disabled', 'disabled');
|
this.calendarimage.addClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', 'default');
|
this.calendarimage.setAttribute('tabindex', -1);
|
||||||
this.release_calendar();
|
this.release_calendar();
|
||||||
} else {
|
} else {
|
||||||
this.calendarimage.set('disabled', false);
|
this.calendarimage.removeClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', null);
|
this.calendarimage.setAttribute('tabindex', 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -360,14 +360,14 @@ CALENDAR.prototype = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggle_calendar_image: function() {
|
toggle_calendar_image: function() {
|
||||||
// If the enable checkbox is det checked, disable the image.
|
// If the enable checkbox is not checked, disable the calendar image and prevent focus.
|
||||||
if (!this.enablecheckbox.get('checked')) {
|
if (!this.enablecheckbox.get('checked')) {
|
||||||
this.calendarimage.set('disabled', 'disabled');
|
this.calendarimage.addClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', 'default');
|
this.calendarimage.setAttribute('tabindex', -1);
|
||||||
this.release_calendar();
|
this.release_calendar();
|
||||||
} else {
|
} else {
|
||||||
this.calendarimage.set('disabled', false);
|
this.calendarimage.removeClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', null);
|
this.calendarimage.setAttribute('tabindex', 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+5
-5
@@ -152,14 +152,14 @@ CALENDAR.prototype = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggle_calendar_image: function() {
|
toggle_calendar_image: function() {
|
||||||
// If the enable checkbox is det checked, disable the image.
|
// If the enable checkbox is not checked, disable the calendar image and prevent focus.
|
||||||
if (!this.enablecheckbox.get('checked')) {
|
if (!this.enablecheckbox.get('checked')) {
|
||||||
this.calendarimage.set('disabled', 'disabled');
|
this.calendarimage.addClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', 'default');
|
this.calendarimage.setAttribute('tabindex', -1);
|
||||||
this.release_calendar();
|
this.release_calendar();
|
||||||
} else {
|
} else {
|
||||||
this.calendarimage.set('disabled', false);
|
this.calendarimage.removeClass('disabled');
|
||||||
this.calendarimage.setStyle('cursor', null);
|
this.calendarimage.setAttribute('tabindex', 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user