Commit 6e70885a authored by Fatih Acet's avatar Fatih Acet Committed by GitLab Release Tools Bot

Merge branch 'fe-fix-gl-dropdown-scrolling-to-top' into 'master'

Fix gl_dropdown scrolling to top on assignee click

See merge request gitlab-org/gitlab-ce!29500

(cherry picked from commit 2a29f910)

3130572f Fix gl_dropdown scrolling to top on assignee click
parent e3bb5f49
...@@ -563,7 +563,7 @@ GitLabDropdown = (function() { ...@@ -563,7 +563,7 @@ GitLabDropdown = (function() {
e.stopPropagation(); e.stopPropagation();
// This prevents automatic scrolling to the top // This prevents automatic scrolling to the top
if ($target.is('a')) { if ($target.closest('a').length) {
return false; return false;
} }
} }
......
---
title: Fix scrolling to top on assignee change
merge_request: 29500
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment