Merge pull request #530 from taigaio/issue/2801/arrows-after-filter
fix arrows after filter in watchers or assignedTostable
commit
f0c3dff32a
|
@ -473,7 +473,6 @@ AssignedToLightboxDirective = (lightboxService, lightboxKeyboardNavigationServic
|
||||||
html = $compile(html)($scope)
|
html = $compile(html)($scope)
|
||||||
|
|
||||||
$el.find("div.watchers").html(html)
|
$el.find("div.watchers").html(html)
|
||||||
lightboxKeyboardNavigationService.init($el)
|
|
||||||
|
|
||||||
closeLightbox = () ->
|
closeLightbox = () ->
|
||||||
lightboxKeyboardNavigationService.stop()
|
lightboxKeyboardNavigationService.stop()
|
||||||
|
@ -487,7 +486,7 @@ AssignedToLightboxDirective = (lightboxService, lightboxKeyboardNavigationServic
|
||||||
render(selectedUser)
|
render(selectedUser)
|
||||||
lightboxService.open($el).then ->
|
lightboxService.open($el).then ->
|
||||||
$el.find('input').focus()
|
$el.find('input').focus()
|
||||||
|
lightboxKeyboardNavigationService.init($el)
|
||||||
|
|
||||||
$scope.$watch "usersSearch", (searchingText) ->
|
$scope.$watch "usersSearch", (searchingText) ->
|
||||||
if searchingText?
|
if searchingText?
|
||||||
|
@ -568,7 +567,6 @@ WatchersLightboxDirective = ($repo, lightboxService, lightboxKeyboardNavigationS
|
||||||
|
|
||||||
html = usersTemplate(ctx)
|
html = usersTemplate(ctx)
|
||||||
$el.find("div.watchers").html(html)
|
$el.find("div.watchers").html(html)
|
||||||
lightboxKeyboardNavigationService.init($el)
|
|
||||||
|
|
||||||
closeLightbox = () ->
|
closeLightbox = () ->
|
||||||
lightboxKeyboardNavigationService.stop()
|
lightboxKeyboardNavigationService.stop()
|
||||||
|
@ -582,7 +580,7 @@ WatchersLightboxDirective = ($repo, lightboxService, lightboxKeyboardNavigationS
|
||||||
|
|
||||||
lightboxService.open($el).then ->
|
lightboxService.open($el).then ->
|
||||||
$el.find("input").focus()
|
$el.find("input").focus()
|
||||||
lightboxKeyboardNavigationService.init($el)
|
lightboxKeyboardNavigationService.init($el)
|
||||||
|
|
||||||
$scope.$watch "usersSearch", (searchingText) ->
|
$scope.$watch "usersSearch", (searchingText) ->
|
||||||
if not searchingText?
|
if not searchingText?
|
||||||
|
|
Loading…
Reference in New Issue