* Triggers the specified event on the target element. * @param {!Element} target * @param {string} eventType * @param {?ActionEventDef} event * @param {!ActionTrust_Enum} trust * @param {?JsonObject=} opt_args * @return {boolean} true if the target has an action.
(target, eventType, event, trust, opt_args)
| 412 | * @return {boolean} true if the target has an action. |
| 413 | */ |
| 414 | trigger(target, eventType, event, trust, opt_args) { |
| 415 | return this.action_(target, eventType, event, trust, opt_args); |
| 416 | } |
| 417 | |
| 418 | /** |
| 419 | * Triggers execution of the method on a target/method. |
no test coverage detected