You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
Hi, Im trying to use ui-tinymce with lazy loaded the tynyMCE npm module via webpack like:
// Main module
require('angular-ui-tinymce');
angular.module('pages', [
'ui.tinymce'
]);
// And then in my directive for text edit I load the tinymce
constructor () {
// Import TinyMCE
require.ensure([], function(require) {
require('tinymce/tinymce.min.js');
// List of plugins you want to use in TinyMCE
require('tinymce/plugins/advlist');
require('tinymce/plugins/anchor');
// TinyMCE theme
require('tinymce/themes/modern');
}, 'tinymce_bundle');
}