mirror of
https://github.com/rikkaneko/paste.git
synced 2025-08-03 12:40:07 +01:00
Update paste modal sizing and scrolling
Signed-off-by: Joe Ma <rikkaneko23@gmail.com>
This commit is contained in:
parent
2d2cb5e804
commit
c5569ea30f
3 changed files with 24 additions and 11 deletions
|
@ -113,6 +113,7 @@ function build_paste_modal(paste_info, show_qrcode = true, saved = true, build_o
|
|||
|
||||
let modal = new bootstrap.Modal(paste_modal.modal);
|
||||
if (!build_only) modal.show();
|
||||
$('.modal-body').scrollTop('0');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -376,7 +377,7 @@ $(function () {
|
|||
}
|
||||
|
||||
try {
|
||||
const res = await fetch(`${ENDPOINT}/${uuid}/settings?${new URLSearchParams({ json: '1' })}`);
|
||||
const res = await fetch(`https://pb.nekoid.cc/${uuid}/settings?${new URLSearchParams({ json: '1' })}`);
|
||||
if (res.ok) {
|
||||
const paste_info = await res.json();
|
||||
build_paste_modal(paste_info, show_qrcode, false);
|
||||
|
@ -401,11 +402,7 @@ $(function () {
|
|||
paste_modal.id_copy_btn.removeClass('btn-primary');
|
||||
paste_modal.id_copy_btn.addClass('btn-success');
|
||||
tooltip.setContent({ '.tooltip-inner': 'Copied' });
|
||||
} catch (err) {
|
||||
tooltip.setContent({ '.tooltip-inner': 'Copied failed' });
|
||||
}
|
||||
} else {
|
||||
tooltip.setContent({ '.tooltip-inner': 'Copied failed' });
|
||||
} catch (err) {}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue