We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b26b8 commit 83fc231Copy full SHA for 83fc231
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@author.io/element-menu",
3
- "version": "1.0.16",
+ "version": "1.0.17",
4
"description": "author-menu custom element (web component).",
5
"main": "dist/author-menu.min.js",
6
"scripts": {
src/element.js
@@ -329,6 +329,12 @@ class AuthorMenuElement extends AuthorBaseElement(HTMLElement) {
329
330
this.PRIVATE.sourceForm = sourceElement.form
331
332
+ if (this.PRIVATE.sourceForm !== null) {
333
+ this.UTIL.registerListeners(this.PRIVATE.sourceForm, {
334
+ reset: evt => this.deselectAll()
335
+ })
336
+ }
337
+
338
this.UTIL.defineProperty('sourceElement', {
339
readonly: true,
340
default: sourceElement
0 commit comments