Skip to content

Commit

Permalink
disable relative url conversion in tinymce
Browse files Browse the repository at this point in the history
  • Loading branch information
jsavell committed Jul 25, 2022
1 parent 35feafa commit 877701c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/controllers/notificationController.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

});

0 comments on commit 877701c

Please sign in to comment.