(message, notification)
| 472 | } |
| 473 | |
| 474 | _copyText(message, notification) { |
| 475 | notification.close(); |
| 476 | if (!navigator.clipboard.writeText(message)) return; |
| 477 | this._notify('Copied text to clipboard'); |
| 478 | } |
| 479 | |
| 480 | _bind(notification, handler) { |
| 481 | if (notification.then) { |
no test coverage detected