Fix bug #851: Error when press Enter key when edit a wiki before closing the assignation lightbox pressing ESC key

stable
David Barragán Merino 2014-09-04 11:45:55 +02:00
parent dbce8d722a
commit d13e3500b2
1 changed files with 2 additions and 0 deletions

View File

@ -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
#############################################################################