This commit is contained in:
parent
fa9242dea1
commit
b828c7bda0
1 changed files with 3 additions and 9 deletions
|
@ -60,7 +60,6 @@ class App.TicketZoomArticleNew extends App.Controller
|
||||||
|
|
||||||
@setArticleTypePre(data.type.name, data.signaturePosition)
|
@setArticleTypePre(data.type.name, data.signaturePosition)
|
||||||
|
|
||||||
@openTextarea(null, true)
|
|
||||||
for key, value of data.article
|
for key, value of data.article
|
||||||
if key is 'body'
|
if key is 'body'
|
||||||
@$("[data-name=\"#{key}\"]").html(value)
|
@$("[data-name=\"#{key}\"]").html(value)
|
||||||
|
@ -150,14 +149,9 @@ class App.TicketZoomArticleNew extends App.Controller
|
||||||
if @subscribeIdTextModule
|
if @subscribeIdTextModule
|
||||||
App.Ticket.unsubscribe(@subscribeIdTextModule)
|
App.Ticket.unsubscribe(@subscribeIdTextModule)
|
||||||
|
|
||||||
@releaseGlobalClickEvents()
|
$(window).off('click.ticket-zoom-select-type')
|
||||||
|
|
||||||
releaseGlobalClickEvents: ->
|
|
||||||
$(window).off 'click.ticket-zoom-select-type'
|
|
||||||
$(window).off 'click.ticket-zoom-textarea'
|
|
||||||
|
|
||||||
render: ->
|
render: ->
|
||||||
@releaseGlobalClickEvents()
|
|
||||||
ticket = App.Ticket.fullLocal(@ticket_id)
|
ticket = App.Ticket.fullLocal(@ticket_id)
|
||||||
|
|
||||||
@html App.view('ticket_zoom/article_new')(
|
@html App.view('ticket_zoom/article_new')(
|
||||||
|
@ -517,7 +511,7 @@ class App.TicketZoomArticleNew extends App.Controller
|
||||||
options:
|
options:
|
||||||
duration: duration
|
duration: duration
|
||||||
easing: 'easeOutQuad'
|
easing: 'easeOutQuad'
|
||||||
complete: => $(window).off('click.ticket-zoom-textarea').on('click.ticket-zoom-textarea', @closeTextarea)
|
complete: => @textarea.off('focusout.ticket-zoom-textarea').on('focusout.ticket-zoom-textarea', @closeTextarea)
|
||||||
|
|
||||||
@textBubble.velocity
|
@textBubble.velocity
|
||||||
properties:
|
properties:
|
||||||
|
@ -562,7 +556,7 @@ class App.TicketZoomArticleNew extends App.Controller
|
||||||
|
|
||||||
closeTextarea: =>
|
closeTextarea: =>
|
||||||
if !@textarea.text().trim() && !@attachments.length && not @isIE10()
|
if !@textarea.text().trim() && !@attachments.length && not @isIE10()
|
||||||
$(window).off 'click.ticket-zoom-textarea'
|
@textarea.off('focusout.ticket-zoom-textarea')
|
||||||
|
|
||||||
@textarea.velocity
|
@textarea.velocity
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in a new issue