Merge branch '29414-fix-link-toggler-diff-changed-files' into 'master'

Fix "N changed files" link toggler jumping to top

Closes #29414

See merge request !10126
This commit is contained in:
Alfredo Sumaran 2017-03-23 03:00:25 +00:00
commit 011664fdd1
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
$('body').on('click', '.js-toggle-button', function(e) {
toggleContainer($(this).closest('.js-toggle-container'));
const targetTag = e.target.tagName.toLowerCase();
const targetTag = e.currentTarget.tagName.toLowerCase();
if (targetTag === 'a' || targetTag === 'button') {
e.preventDefault();
}