Since #4775 has been merged, some code became unreachable.

The `href` property of `.sel` link never changes.
This commit is contained in:
Yevhen 2017-02-28 13:32:27 +02:00 коммит произвёл GitHub
Родитель 4a59ee4b4e
Коммит f9f0e7e0fb
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -184,13 +184,6 @@ $.fn.searchSuggestions = function($results, processCallback, searchType) {
$self.blur(clearCurrentSuggestions);
$form.submit(function(e) {
var $sel = $results.find('.sel');
if ($sel.length && $sel.eq(0).attr('href') != '#') {
e.stopPropagation();
e.preventDefault();
$self.val('');
$sel[0].click();
}
$self.blur();
clearCurrentSuggestions(e);
});