mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-09 08:24:25 +08:00
22 lines
529 B
JavaScript
22 lines
529 B
JavaScript
|
|
|
|
// Globally overwrite links handling in Quill rich text editor
|
|
// var Link = Quill.import('formats/link');
|
|
// Link.sanitize = function(url) {
|
|
// if (url.includes('http:') || url.includes('https:')) {
|
|
// return url;
|
|
// }
|
|
// return 'http://' + url;
|
|
// };
|
|
//
|
|
// function openLinksInNewTab() {
|
|
// _.each($('.ql-editor a'), function(el) {
|
|
// if ($(el).attr('target') !== '_blank') {
|
|
// $(el).attr('target', '_blank');
|
|
// }
|
|
// });
|
|
// }
|
|
//
|
|
// $(document).ready(function(){
|
|
// openLinksInNewTab();
|
|
// });
|