Skip to content

Commit

Permalink
优化搜索体验
Browse files Browse the repository at this point in the history
  • Loading branch information
penghaifeng committed Apr 4, 2019
1 parent 63935ca commit 57f5620
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ function initSearch(){
doSearch(this.value);
return;
}
if(e.keyCode == 27){
//ESC
return;
}
if(e.keyCode == 38){
//up arrow
return;
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_pluginName__",
"short_name": "__MSG_shortName__",
"version": "1.0.8",
"version": "1.0.9",
"description": "__MSG_pluginDesc__",
"icons":
{
Expand Down

0 comments on commit 57f5620

Please sign in to comment.