Overview
| Comment: | [fx] remove event listener in gc panel conjugueur |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
20fb09749e95b9a4e73046df202e2eb0 |
| User & Date: | olr on 2020-07-10 14:33:41 |
| Other Links: | manifest | tags |
Context
|
2020-07-11
| ||
| 07:27 | [tb][fx] use messenger instead of browser to prevent the linter whining check-in: 8676649377 user: olr tags: trunk, tb, fx | |
|
2020-07-10
| ||
| 14:33 | [fx] remove event listener in gc panel conjugueur check-in: 20fb09749e user: olr tags: trunk, fx | |
| 13:38 | [tb] useless command check-in: f1752783e6 user: olr tags: trunk, tb | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [30dbeca75c] to [4f6823afb1].
| ︙ | ︙ | |||
604 605 606 607 608 609 610 |
// Conjugueur
listenConj () {
if (!this.bListenConj) {
// button
this.xParent.getElementById('grammalecte_conj_button').addEventListener("click", (e) => { this.conjugateVerb(); });
// text field
| | | 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 |
// Conjugueur
listenConj () {
if (!this.bListenConj) {
// button
this.xParent.getElementById('grammalecte_conj_button').addEventListener("click", (e) => { this.conjugateVerb(); });
// text field
//this.xParent.getElementById('grammalecte_conj_verb').addEventListener("input", (e) => { this.conjugateVerb(); });
// options
this.xParent.getElementById('grammalecte_conj_oneg').addEventListener("click", (e) => { this.switchOption('grammalecte_conj_oneg'); this.updateConj(); });
this.xParent.getElementById('grammalecte_conj_opro').addEventListener("click", (e) => { this.switchOption('grammalecte_conj_opro'); this.updateConj(); });
this.xParent.getElementById('grammalecte_conj_oint').addEventListener("click", (e) => { this.switchOption('grammalecte_conj_oint'); this.updateConj(); });
this.xParent.getElementById('grammalecte_conj_ofem').addEventListener("click", (e) => { this.switchOption('grammalecte_conj_ofem'); this.updateConj(); });
this.xParent.getElementById('grammalecte_conj_otco').addEventListener("click", (e) => { this.switchOption('grammalecte_conj_otco'); this.updateConj(); });
this.bListenConj = true;
|
| ︙ | ︙ |