Skip to content

Commit

Permalink
SVY-19562: Generate the java based docs and the ng component/service
Browse files Browse the repository at this point in the history
based docs for gitbook

Various fixes for docs.
  • Loading branch information
costescuandrei committed Sep 13, 2024
1 parent 03340e0 commit 5d54736
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions component/smartdocumenteditor/smartdocumenteditor_doc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function setMentionFeeds(mentionFeeds) {
/**
* Force the autosave trigger of the editor to get all latest changes
* @example dataprovider = elements.%%elementName%%.saveData();
* @returns {Object} the data currently in the editor.
* @return {Object} the data currently in the editor.
*/
function saveData() {
}
Expand All @@ -35,7 +35,7 @@ function saveData() {
* Add input to current cursor position, will return false when in readOnly mode
* @example elements.%%elementName%%.addInputAtCursor(input);
* @param {String} input
* @returns {Boolean}
* @return {Boolean}
*/
function addInputAtCursor(input) {
}
Expand All @@ -45,7 +45,7 @@ function addInputAtCursor(input) {
* @example elements.%%elementName%%.addTagAtCursor(tag);
* @param {String} marker
* @param {String} tag
* @returns {Boolean}
* @return {Boolean}
*/
function addTagAtCursor(marker, tag) {
}
Expand Down Expand Up @@ -96,7 +96,7 @@ function undoPreviewHTML(readOnly) {

/**
* Return if editor is in preview mode (CKEditor readOnly)
* @returns boolean
* @return boolean
* @public
*/
function isInPreviewMode() {
Expand Down

0 comments on commit 5d54736

Please sign in to comment.