Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

using ui-tinymce with lazy loaded tynyMCE npm module #359

Open
@SiriusED

Description

@SiriusED

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');
}

Html template of my directive:

<textarea ui-tinymce
		  ng-model="editor.model"
		  ng-change="editor.onTextChanged()"></textarea>

And it doesn't work, textarea always if just simply textarea.

How can I use ui-tinymce with lazy loaded tinyCME core lib?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions