Overview
| Comment: | [fx] NFC normalization |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | FixWebext |
| Files: | files | file ages | folders |
| SHA3-256: |
c8646cd1286d91367165ba75d819fd38 |
| User & Date: | olr on 2017-10-28 10:04:01 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-10-28
| ||
| 10:14 | [fx][build] merge FixWebext check-in: fbb8b552c4 user: olr tags: trunk, fx | |
| 10:04 | [fx] NFC normalization Closed-Leaf check-in: c8646cd128 user: olr tags: fx, FixWebext | |
| 09:47 | [doc] update build.md check-in: 29423db53a user: olr tags: doc, FixWebext | |
Changes
Modified gc_lang/fr/webext/content_scripts/menu.js from [687c841278] to [18300b18f9].
| ︙ | ︙ | |||
37 38 39 40 41 42 43 |
});
/*this.xNode.addEventListener('blur', (e) => {
window.setTimeout(() => {this.xButton.style.display = "none";}, 300);
});*/
}
_getText () {
| | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
});
/*this.xNode.addEventListener('blur', (e) => {
window.setTimeout(() => {this.xButton.style.display = "none";}, 300);
});*/
}
_getText () {
return (this.xNode.tagName == "TEXTAREA") ? this.xNode.value.normalize("NFC") : this.xNode.innerText.normalize("NFC");
}
_createMenu () {
try {
let xMenu = oGrammalecte.createNode("div", {id: this.sMenuId, className: "grammalecte_menu"});
let xCloseButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_close_button", textContent: "×"} );
xCloseButton.onclick = () => {
|
| ︙ | ︙ |