Add a custom trigger handler based on the value of select#field_to_edit

This commit is contained in:
Kathy Darling 2013-11-03 18:50:24 +01:00
parent c31a48fa6c
commit a97e1a697d
1 changed files with 4 additions and 0 deletions

View File

@ -225,6 +225,10 @@ jQuery( function($){
jQuery( ':input[name^="' + bulk_edit + '["]').val( value ).change();
break;
default:
jQuery('select#field_to_edit').trigger(bulk_edit);
break;
}
});