| ... | @@ -2,7 +2,7 @@ |
... | @@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
import $ from 'jquery';
|
|
|
import { escape, throttle } from 'underscore';
|
|
import { escape, throttle } from 'underscore';
|
|
|
import { s__, sprintf } from '~/locale';
|
|
import { s__, __, sprintf } from '~/locale';
|
|
|
import { getIdenticonBackgroundClass, getIdenticonTitle } from '~/helpers/avatar_helper';
|
|
import { getIdenticonBackgroundClass, getIdenticonTitle } from '~/helpers/avatar_helper';
|
|
|
import axios from './lib/utils/axios_utils';
|
|
import axios from './lib/utils/axios_utils';
|
|
|
import DropdownUtils from './filtered_search/dropdown_utils';
|
|
import DropdownUtils from './filtered_search/dropdown_utils';
|
| ... | @@ -439,7 +439,7 @@ export class SearchAutocomplete { |
... | @@ -439,7 +439,7 @@ export class SearchAutocomplete { |
|
|
|
|
|
|
|
restoreMenu() {
|
|
restoreMenu() {
|
|
|
var html;
|
|
var html;
|
|
|
html = '<ul><li class="dropdown-menu-empty-item"><a>Loading...</a></li></ul>';
|
|
html = `<ul><li class="dropdown-menu-empty-item"><a>${__('Loading...')}</a></li></ul>`;
|
|
|
return this.dropdownContent.html(html);
|
|
return this.dropdownContent.html(html);
|
|
|
}
|
|
}
|
|
|
|
|
|
| ... | |
... | |
| ... | | ... | |