Skip to content

Commit

Permalink
prepare release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simonfox committed Apr 11, 2017
1 parent bafda65 commit 0160bc4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/amd/autocomplete.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ref="suggestionsUL">
<li repeat.for="suggestion of suggestions"
id.one-time="'au-autocomplate-' + id + '-suggestion-' + $index"
class-name.bind="($index === index ? 'selected' : '') + (small ? 'small' : '') + ' suggestion'"
class-name.bind="($index === index ? 'selected ' : '') + (small ? 'small ' : '') + 'suggestion'"
mousedown.delegate="suggestionClicked(suggestion)"
role="option">
<template replaceable part="suggestion" >
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/autocomplete.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ref="suggestionsUL">
<li repeat.for="suggestion of suggestions"
id.one-time="'au-autocomplate-' + id + '-suggestion-' + $index"
class-name.bind="($index === index ? 'selected' : '') + (small ? 'small' : '') + ' suggestion'"
class-name.bind="($index === index ? 'selected ' : '') + (small ? 'small ' : '') + 'suggestion'"
mousedown.delegate="suggestionClicked(suggestion)"
role="option">
<template replaceable part="suggestion" >
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/autocomplete.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ref="suggestionsUL">
<li repeat.for="suggestion of suggestions"
id.one-time="'au-autocomplate-' + id + '-suggestion-' + $index"
class-name.bind="($index === index ? 'selected' : '') + (small ? 'small' : '') + ' suggestion'"
class-name.bind="($index === index ? 'selected ' : '') + (small ? 'small ' : '') + 'suggestion'"
mousedown.delegate="suggestionClicked(suggestion)"
role="option">
<template replaceable part="suggestion" >
Expand Down
2 changes: 1 addition & 1 deletion dist/system/autocomplete.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ref="suggestionsUL">
<li repeat.for="suggestion of suggestions"
id.one-time="'au-autocomplate-' + id + '-suggestion-' + $index"
class-name.bind="($index === index ? 'selected' : '') + (small ? 'small' : '') + ' suggestion'"
class-name.bind="($index === index ? 'selected ' : '') + (small ? 'small ' : '') + 'suggestion'"
mousedown.delegate="suggestionClicked(suggestion)"
role="option">
<template replaceable part="suggestion" >
Expand Down
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [1.4.1](https://github.com/drivesoftware/aurelia-autocomplete/releases/tag/1.4.1) (2017-04-12)

### Bugs

* suggestion class-name binding needs spaces between classes

# [1.4.0](https://github.com/drivesoftware/aurelia-autocomplete/releases/tag/1.4.0) (2017-04-11)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-autocomplete",
"version": "1.4.0",
"version": "1.4.1",
"description": "Autocomplete control for Aurelia",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 0160bc4

Please sign in to comment.