Skip to content

Commit

Permalink
CKEditor 4.13 API docs corrected.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaTomanek committed Sep 24, 2019
1 parent 48cf0c8 commit 9ea9e96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/resourcemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ CKEDITOR.resourceManager.prototype = {
* Registers one or more resources to be loaded from an external path
* instead of the core base path.
*
* ```javascript
* ```js
* // Loads a plugin from '/myplugins/sample/plugin.js'.
* CKEDITOR.plugins.addExternal( 'sample', '/myplugins/sample/' );
*
Expand All @@ -143,7 +143,7 @@ CKEDITOR.resourceManager.prototype = {
* @param {String} [fileName] The resource file name. If not provided and
* the `path` argument ends with a slash (`/`), the default `plugin.js` filename is used.
* Otherwise, if not provided and the `path` argument does not end with a slash (`/`)
* or if an empty string provided the function assumes that the `path` argument contains a full path.
* or if an empty string is provided, the function assumes that the `path` argument contains the full path.
*/
addExternal: function( names, path, fileName ) {
// If "fileName" is not provided, we assume that it may be available
Expand Down
6 changes: 3 additions & 3 deletions plugins/clipboard/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -1633,9 +1633,9 @@
*/
CKEDITOR.plugins.clipboard = {
/**
* True if the environment allows to set data on copy or cut manually. This value is false in IE, because this browser
* shows the security dialog window when the script tries to set clipboard data and on older iOS (below version 13),
* because custom data is not saved to clipboard there.
* It returns `true` if the environment allows to set the data on copy or cut manually. This value is `false` in:
* * Internet Explorer — because this browser shows the security dialog window when the script tries to set clipboard data.
* * Older iOS (below version 13) — because custom data is not saved to clipboard there.
*
* @since 4.5.0
* @readonly
Expand Down

0 comments on commit 9ea9e96

Please sign in to comment.