Fix bug #851: Error when press Enter key when edit a wiki before closing the assignation lightbox pressing ESC key
parent
dbce8d722a
commit
d13e3500b2
|
@ -41,6 +41,7 @@ class LightboxService extends taiga.Service
|
|||
close: ($el) ->
|
||||
docEl = angular.element(document)
|
||||
docEl.off(".lightbox")
|
||||
docEl.off(".keyboard-navigation") # Hack: to fix problems in the WYSIWYG textareas when press ENTER
|
||||
|
||||
$el.one "transitionend", =>
|
||||
$el.css('display', 'none')
|
||||
|
@ -92,6 +93,7 @@ class LightboxKeyboardNavigationService extends taiga.Service
|
|||
|
||||
module.service("lightboxKeyboardNavigationService", LightboxKeyboardNavigationService)
|
||||
|
||||
|
||||
#############################################################################
|
||||
## Generic Lighthbox Directive
|
||||
#############################################################################
|
||||
|
|
Loading…
Reference in New Issue