Skip to content

Commit

Permalink
Docs: corrected API docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand authored and msamsel committed Nov 27, 2017
1 parent 67abe02 commit 06ba63d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/pastefromword/filter/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -2037,6 +2037,7 @@
* @returns {Object[]} An array of images found in the `rtfContent`.
* @returns {String} return.hex Hexadecimal string of an image embedded in `rtfContent`.
* @returns {String} return.type String represent type of image, allowed values: 'image/png', 'image/jpeg'.
* @member CKEDITOR.plugins.pastefromword.images
*/
extractFromRtf: function( rtfContent ) {
var ret = [],
Expand Down Expand Up @@ -2077,9 +2078,9 @@
* // Returns: [ 'http://example-picture.com/random.png', 'http://example-picture.com/another.png' ]
*
* @private
* @member CKEDITOR.plugins.pastefromword
* @param {String} html String represent HTML code.
* @returns {String[]} Array of strings represent src attribute of img tags found in `html`.
* @member CKEDITOR.plugins.pastefromword.images
*/
extractTagsFromHtml: function( html ) {
var regexp = /<img[^>]+src="([^"]+)[^>]+/g,
Expand Down

0 comments on commit 06ba63d

Please sign in to comment.