7 Commits

Author SHA1 Message Date
d01f9ee30a Merge pull request #1 from emilis/master
Fixed incorrect parameters in activate_selected() call when pressing ENTER
2012-05-07 16:08:11 -07:00
Emilis Dambauskas
600c3c2486 Fixed incorrect parameters in activate_selected() call when pressing ENTER. 2012-04-16 20:56:55 +03:00
2ca2566ae0 Merge branch 'dev' 2011-04-01 00:00:50 +01:00
13454ae718 fixed link to demo page in readme 2011-04-01 00:00:39 +01:00
10d4620917 Merge branch 'dev' 2011-03-31 23:49:55 +01:00
b3d34e6b99 fixed a typo in readme 2011-03-31 23:49:47 +01:00
41c701d7f2 Merge branch 'release/v0.2.1' into dev 2011-03-31 23:44:05 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -10,11 +10,11 @@ Check out the [Demo][].
First of all you will need [jQuery][], visit their [site][jquery] for more info.
Then include both `jquery.fancy_input.js` and `jquery.fancy_input.css` on your page.
Then include the required files:
<script src="/fancy_input/jquery.fancy_input.js" type="text/javascript"></script>
<script src="/fancy_input/jquery.fancy_suggest.js" type="text/javascript"></script>
<link href="/fancy_input/jquery.fancy_input.css" rel="stylesheet" type="text/css" />
<link href="/fancy_input/jquery.fancy_suggest.css" rel="stylesheet" type="text/css" />
## Usage
@@ -144,5 +144,5 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[jquery]: http://jquery.com/
[demo]: http://files.jimeh.me/projects/fancy_input/demo/
[demo]: http://files.jimeh.me/projects/fancy_input/demo/fancy_suggest.html

View File

@@ -36,7 +36,7 @@
break;
case Self.keys.RETURN:
if (Self.selected_result !== null) {
Self.activate_selected($options);
Self.activate_selected($e, $options);
return false;
}
break;