diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-04 17:22:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-04 17:22:36 -0400 |
commit | a67f99fcf210792da5e028570efbad61407aeab2 (patch) | |
tree | 3a2d617e9d9649828f13e581d8491c0371c67223 /app/src/main/assets/js | |
parent | 4cf368be0cd2f179485b05a3d2cd9b7bc236ba8e (diff) | |
download | frost-a67f99fcf210792da5e028570efbad61407aeab2.tar.gz frost-a67f99fcf210792da5e028570efbad61407aeab2.tar.bz2 frost-a67f99fcf210792da5e028570efbad61407aeab2.zip |
Dev (#21) - fix search and file chooser
* Fix up search and add file chooser
* Fix repeating file chooser
Diffstat (limited to 'app/src/main/assets/js')
-rw-r--r-- | app/src/main/assets/js/search_query.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/src/main/assets/js/search_query.js b/app/src/main/assets/js/search_query.js new file mode 100644 index 00000000..806519de --- /dev/null +++ b/app/src/main/assets/js/search_query.js @@ -0,0 +1,10 @@ +var e = document.getElementById('main-search-input'); +if (e) { + e.value = '$input'; + var n = new Event('input', { + bubbles: !0, + cancelable: !0 + }); + e.dispatchEvent(n); + e.dispatchEvent(new Event('focus')); +} else console.log('Input field not found') |