11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class GrammalecteTextFormatter extends GrammalectePanel {
constructor (...args) {
super(...args);
this.xTFNode = this._createTextFormatter();
this.xPanelContent.appendChild(this.xTFNode);
this.xTextArea = null;
this.TextFormatter = new TextFormatter();
this.formatText = this.TextFormatter.formatTextRuleCount;
this.removeHyphenAtEndOfParagraphs = this.TextFormatter.removeHyphenAtEndOfParagraphsCount;
this.mergeContiguousParagraphs = this.TextFormatter.mergeContiguousParagraphsCount;
this.getParagraph = this.TextFormatter.getParagraph;
}
|
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class GrammalecteTextFormatter extends GrammalectePanel {
constructor (...args) {
super(...args);
this.xTFNode = this._createTextFormatter();
this.xPanelContent.appendChild(this.xTFNode);
this.xTextArea = null;
this.xPanel.style.zIndex = 2147483647; /* maximum is 2147483647: https://stackoverflow.com/questions/491052/minimum-and-maximum-value-of-z-index */
this.TextFormatter = new TextFormatter();
this.formatText = this.TextFormatter.formatTextRuleCount;
this.removeHyphenAtEndOfParagraphs = this.TextFormatter.removeHyphenAtEndOfParagraphsCount;
this.mergeContiguousParagraphs = this.TextFormatter.mergeContiguousParagraphsCount;
this.getParagraph = this.TextFormatter.getParagraph;
}
|