Overview
| Comment: | [tb][fx] fix recursive function |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tb | fx | mailext |
| Files: | files | file ages | folders |
| SHA3-256: |
e4ff01c69e157635e21b90f9b8848daf |
| User & Date: | olr on 2020-07-08 11:07:47 |
| Other Links: | branch diff | manifest | tags |
Context
|
2020-07-08
| ||
| 17:26 | [tb][fx] adjustement for Mail Extension: no event for input -> no autorefresh check-in: 081fa7f8ca user: olr tags: tb, fx, mailext | |
| 11:07 | [tb][fx] fix recursive function check-in: e4ff01c69e user: olr tags: tb, fx, mailext | |
| 06:37 | [tb][fx] update for MailExtension check-in: 329a134246 user: olr tags: tb, fx, mailext | |
Changes
Modified gc_lang/fr/webext/content_scripts/editor.js from [237a922051] to [c240d85760].
| ︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - + + + - + - + |
/*
Editor for HTML page (Thunderbird or Iframe)
*/
class HTMLPageEditor {
constructor (xDocument, bCheckSignature=false) {
this.xDocument = xDocument;
|
| ︙ | |||
46 47 48 49 50 51 52 | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | - + |
showError(e);
}
}
* getParagraphs () {
try {
let i = 0;
|
| ︙ |