Skip to content

Commit

Permalink
remove debug console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Lhcfl committed Jun 11, 2024
1 parent a4a03f2 commit f8ace7c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class AnatoloSearch {
break;
case 'Enter':
const url = $('.ins-selectable.active').data('url');
console.log(url);
if (url) this.gotoLink(url);
break;
case 'Escape':
Expand Down Expand Up @@ -99,7 +98,7 @@ class AnatoloSearch {
.append(
$('<span>')
.addClass('ins-title')
.html(title != null && title !== '' ? title : this.config.translation['UNTITLED']),
.html(title != null && title !== '' ? title : this.config.translation['untitled']),
)
.append(slug ? $('<span>').addClass('ins-slug').html(slug) : null),
)
Expand Down

0 comments on commit f8ace7c

Please sign in to comment.