16 lines
311 B
CoffeeScript
16 lines
311 B
CoffeeScript
|
$ ->
|
||
|
$form = $('#pasteform')
|
||
|
$contents = $('#contents')
|
||
|
$_button = $('#submitbtn')
|
||
|
$button = $('#submitlnk')
|
||
|
|
||
|
# Hide generic button, show styled button
|
||
|
$_button.hide()
|
||
|
$button.show()
|
||
|
$contents.focus()
|
||
|
|
||
|
# Binding submit event to new button
|
||
|
$button.on 'click', ->
|
||
|
$form.submit()
|
||
|
false
|