made C-RET work again
This commit is contained in:
parent
997430f909
commit
cdfe5564d6
|
@ -2,14 +2,14 @@ $(document).on "keydown", "textarea#q-answer", (evt) ->
|
||||||
qid = $(this)[0].dataset.id
|
qid = $(this)[0].dataset.id
|
||||||
if evt.keyCode == 13 and evt.ctrlKey
|
if evt.keyCode == 13 and evt.ctrlKey
|
||||||
# trigger warning:
|
# trigger warning:
|
||||||
$("button#q-answer[data-q-id=#{qid}]").trigger 'click'
|
$("button#q-answer").trigger 'click'
|
||||||
|
|
||||||
|
|
||||||
$(document).on "click", "button#q-answer", ->
|
$(document).on "click", "button#q-answer", ->
|
||||||
btn = $(this)
|
btn = $(this)
|
||||||
btn.button "loading"
|
btn.button "loading"
|
||||||
qid = btn[0].dataset.qId
|
qid = btn[0].dataset.qId
|
||||||
$("textarea#q-answer[data-q=#{qid}]").attr "readonly", "readonly"
|
$("textarea#q-answer").attr "readonly", "readonly"
|
||||||
|
|
||||||
shareTo = []
|
shareTo = []
|
||||||
($ "input[type=checkbox][name=share][data-q-id=#{qid}]:checked").each (i, share) ->
|
($ "input[type=checkbox][name=share][data-q-id=#{qid}]:checked").each (i, share) ->
|
||||||
|
@ -34,4 +34,4 @@ $(document).on "click", "button#q-answer", ->
|
||||||
showNotification "An error occurred, a developer should check the console for details", false
|
showNotification "An error occurred, a developer should check the console for details", false
|
||||||
complete: (jqxhr, status) ->
|
complete: (jqxhr, status) ->
|
||||||
btn.button "reset"
|
btn.button "reset"
|
||||||
$("textarea#q-answer[data-id=#{qid}]").removeAttr "readonly"
|
$("textarea#q-answer").removeAttr "readonly"
|
||||||
|
|
Loading…
Reference in New Issue