File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 694694 lazyInit = function ( input ) {
695695 input
696696 . on ( 'open.xdsoft focusin.xdsoft mousedown.xdsoft' , function initOnActionCallback ( event ) {
697- if ( input . is ( ':disabled' ) || input . is ( ':hidden' ) || ! input . is ( ':visible' ) || input . data ( 'xdsoft_datetimepicker' ) ) {
697+ if ( input . is ( ':disabled' ) || input . data ( 'xdsoft_datetimepicker' ) ) {
698698 return ;
699699 }
700700 clearTimeout ( lazyInitTimer ) ;
17221722 input
17231723 . data ( 'xdsoft_datetimepicker' , datetimepicker )
17241724 . on ( 'open.xdsoft focusin.xdsoft mousedown.xdsoft' , function ( event ) {
1725- if ( input . is ( ':disabled' ) || input . is ( ':hidden' ) || ! input . is ( ':visible' ) || ( input . data ( 'xdsoft_datetimepicker' ) . is ( ':visible' ) && options . closeOnInputClick ) ) {
1725+ if ( input . is ( ':disabled' ) || ( input . data ( 'xdsoft_datetimepicker' ) . is ( ':visible' ) && options . closeOnInputClick ) ) {
17261726 return ;
17271727 }
17281728 clearTimeout ( timer ) ;
17291729 timer = setTimeout ( function ( ) {
1730- if ( input . is ( ':disabled' ) || input . is ( ':hidden' ) || ! input . is ( ':visible' ) ) {
1730+ if ( input . is ( ':disabled' ) ) {
17311731 return ;
17321732 }
17331733
You can’t perform that action at this time.
0 commit comments