bootstrap 4 upgrade

This commit is contained in:
azivner
2018-11-05 21:12:03 +01:00
parent 7bdbea81f1
commit 24a1838b13
26 changed files with 64 additions and 10085 deletions

View File

@@ -24,9 +24,10 @@ async function autocompleteSource(request, response) {
async function initNoteAutocomplete($el) {
if (!$el.hasClass("ui-autocomplete-input")) {
const $showRecentNotesButton = $("<span>")
.addClass("input-group-addon show-recent-notes-button")
.prop("title", "Show recent notes");
const $showRecentNotesButton = $("<div>").addClass("input-group-append").append(
$("<span>")
.addClass("input-group-text show-recent-notes-button")
.prop("title", "Show recent notes"));
$el.after($showRecentNotesButton);