Skip to content

Commit

Permalink
Merge 4b23ebb into f9a3602
Browse files Browse the repository at this point in the history
  • Loading branch information
tsj1107 committed Nov 30, 2015
2 parents f9a3602 + 4b23ebb commit 9e814fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arale-select",
"version": "0.11.0",
"version": "0.11.1",
"description": "模拟 select 的组件",
"keywords": ["widget"],
"homepage": "http://aralejs.org/select",
Expand Down
2 changes: 1 addition & 1 deletion src/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ var Select = Overlay.extend({
var input = $('input[name="' + selectName + '"]').eq(0);
if (!input[0]) {
input = $(
'<input type="text" id="select-' + selectName.replace(/\./g, '-') +
'<input type="text" tabindex="-1" id="select-' + selectName.replace(/\./g, '-') +
'" name="' + selectName +
'" />'
).css({
Expand Down

0 comments on commit 9e814fd

Please sign in to comment.