Merge pull request #4053 from helgatheviking/feature/variation-bulk-edit-trigger
Add a custom trigger handler based on the value of select#field_to_edit
This commit is contained in:
commit
ac6bb25a22
|
@ -225,6 +225,10 @@ jQuery( function($){
|
||||||
|
|
||||||
jQuery( ':input[name^="' + bulk_edit + '["]').val( value ).change();
|
jQuery( ':input[name^="' + bulk_edit + '["]').val( value ).change();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
jQuery('select#field_to_edit').trigger(bulk_edit);
|
||||||
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue