mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
Use undefined for default parameters
This commit is contained in:
@ -39,7 +39,8 @@ class Clipboard extends Emitter {
|
||||
* @param {Element} trigger
|
||||
*/
|
||||
setAction(trigger) {
|
||||
return trigger.getAttribute(prefix + 'action');
|
||||
var action = trigger.getAttribute(prefix + 'action');
|
||||
return action === null ? undefined : action;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user