Hide hotkey tooltip after click event in diff comments

This commit is contained in:
Dennis Tang 2018-03-06 14:37:50 +01:00
parent fa31559a37
commit 50432548af
1 changed files with 1 additions and 1 deletions

View File

@ -72,5 +72,5 @@ $(document).on('keyup.quick_submit', '.js-quick-submit input[type=submit], .js-q
title,
trigger: 'manual',
});
$this.tooltip('show').one('blur', () => $this.tooltip('hide'));
$this.tooltip('show').one('blur click', () => $this.tooltip('hide'));
});