I created a plugin macro with some 'startup' logic using javascript
AJS.bind("init.rte", function() {
// my code here
});
And it worked fine on my little standalone server. However, it does not seem to work on the test server, which has many third party plugins installed. Is it possible that one of those other plugins has also bound "init.rte", and if so, how does one work around that?
I am still new to javascript, so I would welcome any input.