1
0
Fork 0
beathaven/app/assets/javascripts/bindings/autocomplete.js.coffee

13 lines
425 B
CoffeeScript
Raw Normal View History

2012-09-01 17:55:01 +00:00
$ ->
$(".navbar-search input").focus ->
$(this).animate(width: 249)
2012-09-01 22:03:19 +00:00
$(".player").animate(width: 368)
2012-09-01 17:55:01 +00:00
$(".navbar-search input").blur ->
$(this).animate(width: 99)
2012-09-01 22:03:19 +00:00
$(".player").animate(width: 518)
2012-09-01 17:55:01 +00:00
window.desired = $(".navbar-search input").autocomplete
serviceUrl: "/api/search/complete.json"
2012-09-01 17:55:01 +00:00
onSelect: (selected) ->
Backbone.history.navigate("/search/"+selected.replace(/\s/g, "+"), true)