#876 closed bug (fixed)
datePicker replaces class on input when inputClick:true is supplied
Reported by: | sam | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | plugin | Version: | |
Keywords: | datePicker | Cc: | |
Blocked by: | Blocking: |
Description
The datePicker plugin replaces any class on the input if "inputClick: true" is supplied, which may change the display of the box.
Easy fix though.
Go to line 392 and replace
calBut = jQuery(this).attr({'class':'date-picker', 'title':chooseDate});
with
calBut = jQuery(this).attr({'title':chooseDate}).addClass('date-picker');
Note: See
TracTickets for help on using
tickets.
Fixed in revision 1255