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:
Mike Jolley 2013-11-08 08:08:12 -08:00
commit ac6bb25a22
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;
}
});