UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

29 lines (28 loc) 831 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net */ import { attr } from "../../../../core/helpers/utils/attr.js"; const isSafeHref = (href) => /^(https?:|mailto:|tel:)/i.test(href.trim()) && !/^(javascript:|data:|vbscript:)/i.test(href.trim()); export default [ { name: 'eye', tooltip: 'Open link', exec: (editor, current) => { const href = attr(current, 'href'); if (current && href && isSafeHref(href)) { editor.ow.open(href); } } }, { name: 'link', tooltip: 'Edit link', icon: 'pencil' }, 'unlink', 'brush', 'file' ];