diff --git a/_data/nav.yml b/_data/nav.yml index 03fc816..be658dd 100644 --- a/_data/nav.yml +++ b/_data/nav.yml @@ -414,6 +414,7 @@ - url: "enterprise" pages: + - url: "tiny-comments" - url: "manage-files-and-images" - url: "paste-from-word" - url: "check-spelling" diff --git a/enterprise/tiny-comments.md b/enterprise/tiny-comments.md new file mode 100644 index 0000000..cfed490 --- /dev/null +++ b/enterprise/tiny-comments.md @@ -0,0 +1,27 @@ +--- +layout: default +title: Tiny Comments +description: Tiny Comments provides the ability to add comments to the content and collaborate with other users for content editing. +keywords: enterprise pricing video youtube vimeo mp3 mp4 mov movie clip film comment commenting mediaembed media +--- + +The [Tiny Comment]({{ site.baseurl }}/plugins/tiny-comment/) plugin provides the ability to add comments to the content and collaborate with other users for content editing within the TinyMCE editor. +The primary value that TinyComments offer is a user interface to create, reply, and delete comments. TinyComments is a plugin that builds upon the the new Annotator API and uses annotations to create comment threads. The TinyComments plugin in its current state does not store the comments anywhere. However, it gives the integrator callback APIs to create, search, and store comment threads. + +Example: + +```js + ('tinycomments','The tinycomments enterprise plugin is not enabled on your API key. Please contact Ephox to upgrade your key.'); +(function (pluginName,message) { + tinymce.PluginManager.add(pluginName, function(editor) { + editor.on( "skinLoaded", function() { + editor.notificationManager.open({ + text: message, + type: 'warning' + }); + }); + }); +}); +``` + +[Tiny Comments]({{ site.baseurl }}/images/comments.png) diff --git a/images/comments.png b/images/comments.png new file mode 100644 index 0000000..d0ada52 Binary files /dev/null and b/images/comments.png differ