Overview
Comment: | [tb] lexicon editor: ui update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tb | tbme |
Files: | files | file ages | folders |
SHA3-256: |
437198b8d693e9c787bd536ef32f6597 |
User & Date: | olr on 2019-09-04 16:35:03 |
Other Links: | branch diff | manifest | tags |
Context
2019-09-04
| ||
19:44 | [tb] ui update check-in: 3b7d4a1c2e user: olr tags: tb, tbme | |
16:35 | [tb] lexicon editor: ui update check-in: 437198b8d6 user: olr tags: tb, tbme | |
2019-09-03
| ||
18:45 | [tb] ui and code update check-in: 6b3259a6bb user: olr tags: tb, tbme | |
Changes
Modified gc_lang/fr/mailext/content/lex_editor.css from [d28ca8e3b0] to [51c3b220a1].
︙ | |||
78 79 80 81 82 83 84 | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | - - + + | */ #lexicon_table { width: 600px; height: 650px; } |
︙ |
Modified gc_lang/fr/mailext/content/lex_editor.js from [fccff12209] to [289de26df4].
︙ | |||
61 62 63 64 65 66 67 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + - + | this.iEntryIndex = 0; this.lEntry = []; this.nEntry = 0 this._createHeader(); } _createHeader () { |
︙ | |||
110 111 112 113 114 115 116 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | - - + + | if (this.xNumEntry) { this.xNumEntry.value = this.nEntry; } } _addRow (lData) { let xRowNode = createNode("richlistitem", { id: this.sNodeId + "_item_" + this.iEntryIndex, value: this.iEntryIndex }); |
︙ | |||
540 541 542 543 544 545 546 | 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 | - - - - + + + + | lEntry.push([sTag, sLabel.trim()]); } oTagsTable.fill(lEntry); } } |