Skip to content

Commit 7cff8d7

Browse files
author
Jan Miksovsky
committed
Update components in preparation for 0.6.3 release
1 parent 740ce20 commit 7cff8d7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

basic-keyboard-prefix-selection.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<!--
2-
Aspect which maps direction keys (Left, Right, etc.) to direction semantics
3-
(goLeft, goRight, etc.).
2+
Handle list box-style prefix typing, in which the user can type a string to
3+
select the first item that begins with that string.
44
55
@element basic-keyboard-prefix-selection
66
-->
7+
<!--
8+
TODO: If the selection is changed by some other means (e.g., arrow keys) other
9+
than prefix typing, then that act should reset the prefix.
10+
-->
711

812
<link rel="import" href="../basic-aspect/basic-aspect.html">
913
<link rel="import" href="../basic-shared/basic-shared.html">
@@ -48,7 +52,7 @@
4852

4953
if (handled) {
5054
event.preventDefault();
51-
return false;
55+
event.stopPropagation();
5256
}
5357
},
5458

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "basic-keyboard-prefix-selection",
33
"description": "Aspect which maps direction keys (Left, Right, etc.) to direction semantics (goLeft, goRight, etc.).",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"license": "MIT",
66
"main": "basic-keyboard-prefix-selection.html",
77
"dependencies": {
8-
"basic-aspect": "basic-web-components/basic-aspect#0.6.2",
8+
"basic-aspect": "basic-web-components/basic-aspect#0.6.3",
99
"polymer": "Polymer/polymer#^1.1"
1010
},
1111
"devDependencies": {
12-
"basic-framed-content": "basic-web-components/basic-framed-content#0.6.2",
12+
"basic-framed-content": "basic-web-components/basic-framed-content#0.6.3",
1313
"web-component-tester": "*"
1414
},
1515
"keywords": [

0 commit comments

Comments
 (0)