25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- $ ->
- 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
|