Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Add better keyboard support #51

Merged
merged 1 commit into from
Sep 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions src/selectr.js
Original file line number Diff line number Diff line change
Expand Up @@ -1133,20 +1133,30 @@

}

// Open the dropdown with Enter key if focused
if (this.config.nativeDropdown) {
this.container.addEventListener("keydown", function(e) {
if (e.key === "Enter" && that.selected === document.activeElement) {
// Show the native
// Keyboard Support
this.container.addEventListener("keydown", function(e) {
if (e.key === "Escape") {
that.close();
}

if (e.key === "Enter" && that.selected === document.activeElement) {
if (typeof that.el.form.submit !== 'undefined') that.el.form.submit();
}

if ((e.key === " " || e.key === "ArrowUp" || e.key === "ArrowDown") &&
that.selected === document.activeElement) {
setTimeout(function() {
that.toggle();
}, 200);

if (that.config.nativeDropdown) {
// Focus on the native multiselect
setTimeout(function() {
that.el.focus();
}, 200);
}
});
}
}
});

// Non-native dropdown
this.selected.addEventListener("click", function(e) {
Expand Down Expand Up @@ -2043,6 +2053,7 @@

util.truncate(this.tree);
clearSearch.call(this);
this.selected.focus();
};


Expand Down