Luuf already mentioned Aloha-Editor. Although he is still in a difficult development, he looks pretty promising.
Just put the aloha-config.js file anywhere on your resource path, aloha files will be sent (i.e.) to the provider / assets.
Configuration Example:
(function(window, undefined) { if (window.Aloha === undefined || window.Aloha === null) { var Aloha = window.Aloha = {}; } Aloha.settings = { logLevels: {'error': true, 'warn': true, 'info': true, 'debug': false, 'deprecated': true}, baseUrl: "/assets/lib", errorhandling: false, plugins: false }; })(window);
The baseUrl line is the most important. Setting it to / assets / lib seems to provide compatibility with the asset pipeline.
Not tried concatenation yet, will post a comment when I know how it behaves.
Hello!
Marc
source share