How do I add the footnotes plugin to CKEditor?
I've downloaded the necessary scripts and added them as resources following the same path as other plugins, but I keep getting a resource not found error in the console:
Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "footnotes" was not found at "/CKEditorReactive/ckeditor/plugins/footnotes/plugin.js?t=K24B".
But when I go to https://dev-myoutsystemsdomain.com/CKEditorReactive_BHRPDefaults/ckeditor/plugins/footnotes/plugin.js the script is there.
Why is it appending t=K24B to the resource path?
I'm using a cloned version of the original forge asset.
I forgot to change the first line in the CKEditor required script after changing the app name:
var CKEDITOR_BASEPATH = "/CKEditorReactive/ckeditor/";
SHOULD BE:
var CKEDITOR_BASEPATH = "/CKEditorReactive_MyClone/ckeditor/";