Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- $ ->
- submit = ->
- host = $('#check_host').val()
- type = $('#check_type').val()
- window.location.href = "<%= Rails.configuration.relative_url_root %>/#{type}/#{host}"
-
- $('#check_host').keypress (e) ->
- submit() if e.which == 13
- return
- $('#check_submit').click ->
- submit()
- return
|