13 lines
426 B
CoffeeScript
13 lines
426 B
CoffeeScript
$ ->
|
|
$(".navbar-search input").focus ->
|
|
$(this).animate(width: 244)
|
|
$(".player").animate(width: 368)
|
|
$(".navbar-search input").blur ->
|
|
$(this).animate(width: 133)
|
|
$(".player").animate(width: 467)
|
|
|
|
window.desired = $(".navbar-search input").autocomplete
|
|
serviceUrl: "/api/search/complete.json"
|
|
onSelect: (selected) ->
|
|
Backbone.history.navigate("/search/"+selected.replace(/\s/g, "+"), true)
|