Commit 2a29f910 authored by Fatih Acet's avatar Fatih Acet

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
parents 9bf141cf 3130572f
...@@ -567,7 +567,7 @@ GitLabDropdown = (function() { ...@@ -567,7 +567,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