🎨 link text

This commit is contained in:
Vanessa 2024-04-26 23:11:52 +08:00
parent e831f07eb2
commit 41e6c78bdb
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ export abstract class Constants {
// size
public static readonly SIZE_SCROLL_TB: number = 24;
public static readonly SIZE_SCROLL_STEP: number = 256;
public static readonly SIZE_LINK_TEXT_MAX: number = 24;
public static readonly SIZE_LINK_TEXT_MAX: number = 64;
public static readonly SIZE_TOOLBAR_HEIGHT: number = isMobile() ? 0 : 32;
public static readonly SIZE_GET_MAX = 102400;
public static readonly SIZE_UNDO = 64;

View file

@ -1160,7 +1160,7 @@ export const linkMenu = (protyle: IProtyle, linkElement: HTMLElement, focusText
let anchor = linkElement.textContent.replace(Constants.ZWSP, "");
if (!anchor && linkAddress) {
anchor = linkAddress.replace("https://", "").replace("http://", "");
if (anchor.length > 24) {
if (anchor.length > Constants.SIZE_LINK_TEXT_MAX) {
anchor = anchor.substring(0, Constants.SIZE_LINK_TEXT_MAX) + "...";
}
linkElement.innerHTML = Lute.EscapeHTMLStr(anchor);