You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
5.1 KiB
HTML
111 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WordCount — CKEditor Sample</title>
|
|
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
|
|
<script src="../../../ckeditor.js"></script>
|
|
<link href="../../../samples/sample.css" rel="stylesheet">
|
|
<meta name="ckeditor-sample-name" content="WordCount plugin">
|
|
<meta name="ckeditor-sample-group" content="Plugins">
|
|
<meta name="ckeditor-sample-description" content="Counts the words an shows the word count in the footer of the editor.">
|
|
<meta name="ckeditor-sample-isnew" content="1">
|
|
<script>
|
|
CKEDITOR.disableAutoInline = true;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 class="samples">
|
|
<a href="../../../samples/index.html">CKEditor Samples</a> » WordCount Plugin
|
|
</h1>
|
|
|
|
<div class="description">
|
|
<p>
|
|
WordCount Plugin for CKEditor that counts the words an shows the word count in the footer of the editor.</a>.
|
|
</p>
|
|
<p>
|
|
In order to use the new plugin, include it in the <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-extraPlugins">config.extraPlugins</a></code> configuration setting.
|
|
</p>
|
|
<pre class="samples">
|
|
CKEDITOR.replace( '<em>textarea_id</em>', {
|
|
<strong>extraPlugins: 'wordcount',
|
|
maxWordCount: 4,
|
|
maxCharCount: 10,
|
|
// optional events
|
|
paragraphsCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationparagraphs").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - paragraphs").show();
|
|
},
|
|
wordCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationword").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - word").show();
|
|
},
|
|
charCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationchar").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - char").show();
|
|
},
|
|
charCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationchar").css("background-color", "white").css("color", "black").hide();
|
|
},
|
|
paragraphsCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationparagraphs").css("background-color", "white").css("color", "black").hide();
|
|
},
|
|
wordCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationword").css("background-color", "white").css("color", "black").hide();
|
|
}</strong>
|
|
} );
|
|
</pre>
|
|
</div>
|
|
|
|
<textarea cols="80" id="editor1" name="editor1" rows="10">
|
|
This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.
|
|
</textarea>
|
|
<div id="informationchar"></div>
|
|
<div id="informationword"></div>
|
|
<div id="informationparagraphs"></div>
|
|
<script>
|
|
|
|
CKEDITOR.replace('editor1', {
|
|
extraPlugins: 'wordcount',
|
|
wordcount: {
|
|
showWordCount: true,
|
|
showCharCount: true,
|
|
maxWordCount: 4,
|
|
maxCharCount: 10,
|
|
paragraphsCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationparagraphs").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - paragraphs").show();
|
|
},
|
|
wordCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationword").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - word").show();
|
|
},
|
|
charCountGreaterThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationchar").css("background-color", "crimson").css("color", "white").text(currentLength + "/" + maxLength + " - char").show();
|
|
},
|
|
charCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationchar").css("background-color", "white").css("color", "black").hide();
|
|
},
|
|
paragraphsCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationparagraphs").css("background-color", "white").css("color", "black").hide();
|
|
},
|
|
wordCountLessThanMaxLengthEvent: function (currentLength, maxLength) {
|
|
$("#informationword").css("background-color", "white").css("color", "black").hide();
|
|
}
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="footer">
|
|
<hr>
|
|
<p>
|
|
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
|
</p>
|
|
<p id="copy">
|
|
Copyright © 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
|
Knabben. All rights reserved.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|