Skip to content

Commit

Permalink
Merge pull request #217 from TAMULib/216-absolute-urls
Browse files Browse the repository at this point in the history
Disable relative url conversion in tinymce
  • Loading branch information
jmicah authored Jul 26, 2022
2 parents 35feafa + 877701c commit 238bb45
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 238bb45

Please sign in to comment.