I want to develop a plugin to disable file drag and drop in IBM Content Navigator.
Currently i overwrite the following event:
require(["dojo/_base/declare",
"dojo/_base/lang","dojo/aspect"],
function(declare, lang, aspect) {
aspect.around(Tree.prototype, "onExternalDrop", function (original) {
return function (evt) {
return;
};
});
});
What is wrong here, ICN alterts an error after loading the plugin: CIWEB2039
Thanks for your help.