mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 19:45:12 +01:00
12 lines
523 B
JavaScript
12 lines
523 B
JavaScript
var elem = document.querySelector('.autocomplete');
|
|
var instance = M.Autocomplete.getInstance(elem);
|
|
instance.updateData({
|
|
{% for bookmark in bookmarks %}
|
|
{% if bookmark.favicon %}
|
|
"{{ bookmark.title | replace('"', '\\"') | replace('\n', '') | replace('\r', '') }}": "{{ url_for('static', filename='favicons/' + bookmark.favicon) }}",
|
|
{% else %}
|
|
"{{ bookmark.title | replace('"', '\\"') | replace('\n', '') | replace('\r', '') }}": null,
|
|
{% endif %}
|
|
{% endfor %}
|
|
});
|