mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 08:06:08 +10:00
9 lines
206 B
CoffeeScript
9 lines
206 B
CoffeeScript
class SearchAutocomplete
|
|
constructor: (json) ->
|
|
$("#search").autocomplete
|
|
source: json
|
|
select: (event, ui) ->
|
|
location.href = ui.item.url
|
|
|
|
@SearchAutocomplete = SearchAutocomplete
|