added comments to ace exposed methods
parent
3fe3df91ae
commit
61022be6e4
|
@ -45,14 +45,26 @@ Returns the `rep` object.
|
||||||
## editorInfo.ace_doInsertUnorderedList(?)
|
## editorInfo.ace_doInsertUnorderedList(?)
|
||||||
## editorInfo.ace_doInsertOrderedList(?)
|
## editorInfo.ace_doInsertOrderedList(?)
|
||||||
## editorInfo.ace_performDocumentApplyAttributesToRange()
|
## editorInfo.ace_performDocumentApplyAttributesToRange()
|
||||||
|
|
||||||
## editorInfo.ace_getAuthorInfos()
|
## editorInfo.ace_getAuthorInfos()
|
||||||
## editorInfo.ace_performDocumentReplaceRange(?)
|
Returns an info object about the author. Object key = author_id and info includes athour's bg color value.
|
||||||
## editorInfo.ace_performDocumentReplaceCharRange(?)
|
Use to define your own authorship.
|
||||||
## editorInfo.ace_renumberList(?)
|
## editorInfo.ace_performDocumentReplaceRange(start, end, newText)
|
||||||
|
This function replaces a range (from [x1,y1] to [x2,y2]) with `newText`.
|
||||||
|
## editorInfo.ace_performDocumentReplaceCharRange(startChar, endChar, newText)
|
||||||
|
This function replaces a range (from y1 to y2) with `newText`.
|
||||||
|
## editorInfo.ace_renumberList(lineNum)
|
||||||
|
If you delete a line, calling this method will fix the line numbering.
|
||||||
## editorInfo.ace_doReturnKey()
|
## editorInfo.ace_doReturnKey()
|
||||||
## editorInfo.ace_isBlockElement(?)
|
Forces a return key at the current carret position.
|
||||||
## editorInfo.ace_getLineListType(?)
|
## editorInfo.ace_isBlockElement(element)
|
||||||
|
Returns true if your passed elment is registered as a block element
|
||||||
|
## editorInfo.ace_getLineListType(lineNum)
|
||||||
|
Returns the line's html list type.
|
||||||
## editorInfo.ace_caretLine()
|
## editorInfo.ace_caretLine()
|
||||||
|
Returns X position of the caret.
|
||||||
## editorInfo.ace_caretColumn()
|
## editorInfo.ace_caretColumn()
|
||||||
|
Returns Y position of the caret.
|
||||||
## editorInfo.ace_caretDocChar()
|
## editorInfo.ace_caretDocChar()
|
||||||
|
Returns the Y offset starting from [x=0,y=0]
|
||||||
## editorInfo.ace_isWordChar(?)
|
## editorInfo.ace_isWordChar(?)
|
||||||
|
|
|
@ -239,6 +239,6 @@ Things in context:
|
||||||
3. class - line class
|
3. class - line class
|
||||||
|
|
||||||
This hook is provided to allow whether a given line should be deliniated with multiple authors.
|
This hook is provided to allow whether a given line should be deliniated with multiple authors.
|
||||||
Multiple authors in one line cause the creation of magic span lines. This might not be suit you and
|
Multiple authors in one line cause the creation of magic span lines. This might not suit you and
|
||||||
now you can disable it and handle your own deliniation.
|
now you can disable it and handle your own deliniation.
|
||||||
The return value should be either true(disable ) or false.
|
The return value should be either true(disable) or false.
|
||||||
|
|
Loading…
Reference in New Issue