Skip to content

Commit

Permalink
minor fix in name of alias input
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiodlopes committed Jul 3, 2017
1 parent 95b91ba commit b4a595d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-flexdatalist",
"version": "2.0.1",
"version": "2.0.3",
"main": ["jquery.flexdatalist.js"],
"dependencies": {
"jquery": ">=1.8"
Expand Down
4 changes: 2 additions & 2 deletions jquery.flexdatalist.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Autocomplete input fields, with support for datalists.
*
* Version:
* 2.0.2
* 2.0.3
*
* Depends:
* jquery.js > 1.8.3
Expand Down Expand Up @@ -298,7 +298,7 @@ jQuery.fn.flexdatalist = function (_option, _value) {
.clone(false)
.attr({
'list': null,
'name': ($this.attr('name') ? $this.attr('name') + '-flexdatalist' : null),
'name': ($this.attr('name') ? 'flexdatalist-' + $this.attr('name') : null),
'id': ($this.attr('id') ? $this.attr('id') + '-flexdatalist' : null),
'value': ''
})
Expand Down
Loading

0 comments on commit b4a595d

Please sign in to comment.