From 877701c0e63f0a259c1363739fed99354699914b Mon Sep 17 00:00:00 2001 From: Jason Savell Date: Mon, 25 Jul 2022 14:51:17 -0500 Subject: [PATCH] disable relative url conversion in tinymce --- app/controllers/notificationController.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/controllers/notificationController.js b/app/controllers/notificationController.js index d15bcf0a..4a87f59f 100644 --- a/app/controllers/notificationController.js +++ b/app/controllers/notificationController.js @@ -118,7 +118,10 @@ app.controller('NotificationController', function ($controller, $scope, Notifica selector: 'textarea', theme: "modern", plugins: "link lists textcolor", - toolbar: "undo redo | formatselect bold italic separator | alignleft aligncenter alignright | numlist bullist | forecolor backcolor" + toolbar: "undo redo | formatselect bold italic separator | alignleft aligncenter alignright | numlist bullist | forecolor backcolor", + relative_urls: false, + remove_script_host : false, + convert_urls : true }; });