File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ jQuery(document).ready(function($) {
608
608
var option = jQuery ( this ) . data ( 'option' ) ;
609
609
setAttachmentOption ( attachment_id , option , jQuery ( this ) [ 0 ] . checked ) ;
610
610
} ) ;
611
- tag . find ( '.pdf-options input[type=text], .pdf-options select' ) . change ( function ( ) {
611
+ tag . find ( '.pdf-options input[type=text], .pdf-options select' ) . on ( "input change" , function ( ) {
612
612
var attachment_id = jQuery ( this ) . data ( 'attachment_id' ) ;
613
613
var option = jQuery ( this ) . data ( 'option' ) ;
614
614
setAttachmentOption ( attachment_id , option , jQuery ( this ) . val ( ) ) ;
@@ -910,7 +910,7 @@ jQuery(document).ready(function($) {
910
910
911
911
select . val ( data . pdf_value ) . trigger ( 'change' ) ;
912
912
913
- select . change ( function ( ) {
913
+ select . on ( "input change" , function ( ) {
914
914
jQuery ( this ) . prev ( ) . val ( jQuery ( this ) . val ( ) ) . trigger ( 'change' ) ;
915
915
} ) ;
916
916
}
@@ -1332,7 +1332,7 @@ jQuery(document).ready(function($) {
1332
1332
} ) ;
1333
1333
} ) ;
1334
1334
1335
- tag . find ( 'input.coordinate' ) . change ( updateRegion ) ;
1335
+ tag . find ( 'input.coordinate' ) . on ( "input change" , updateRegion ) ;
1336
1336
1337
1337
jQuery ( image ) . attr ( 'src' , data . snapshot ) ;
1338
1338
}
You can’t perform that action at this time.
0 commit comments