aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/assets/js/search_query.js
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-12-10 14:25:29 -0500
committerGitHub <noreply@github.com>2017-12-10 14:25:29 -0500
commit1d4380cee77fc049a54d280a27dcefa3fa6ff1fd (patch)
tree6aa222b3f88862a46c8ffd0e46bfb94755d54729 /app/src/main/assets/js/search_query.js
parent30eb51a44a271512e27c97aecc02f3a339f572bf (diff)
downloadfrost-1d4380cee77fc049a54d280a27dcefa3fa6ff1fd.tar.gz
frost-1d4380cee77fc049a54d280a27dcefa3fa6ff1fd.tar.bz2
frost-1d4380cee77fc049a54d280a27dcefa3fa6ff1fd.zip
theme (#546)
* Update to coffee and use webstorm * Add chrome as well * Update all * Reinstall android 27
Diffstat (limited to 'app/src/main/assets/js/search_query.js')
-rw-r--r--app/src/main/assets/js/search_query.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/src/main/assets/js/search_query.js b/app/src/main/assets/js/search_query.js
deleted file mode 100644
index 806519de..00000000
--- a/app/src/main/assets/js/search_query.js
+++ /dev/null
@@ -1,10 +0,0 @@
-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')