Overview
| Comment: | Permet de pouvoir utiliser Grammalecte sur twitter |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | FixWebext |
| Files: | files | file ages | folders |
| SHA3-256: |
686fe8194da182ebe5a05dc94ad46224 |
| User & Date: | IllusionPerdu on 2017-10-28 01:16:36 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-10-28
| ||
| 06:57 | [fx] fix menu button size check-in: 625b15ea09 user: olr tags: fx, FixWebext | |
| 01:16 | Permet de pouvoir utiliser Grammalecte sur twitter check-in: 686fe8194d user: IllusionPerdu tags: fx, FixWebext | |
| 00:22 | Revert changement de taille du bouton (est super petit sur certain site) check-in: d5e30a5b87 user: IllusionPerdu tags: fx, FixWebext | |
Changes
Modified gc_lang/fr/webext/content_scripts/menu.js from [5464f752b2] to [0a15c1c9ea].
| ︙ | |||
10 11 12 13 14 15 16 | 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 36 37 38 39 40 41 | - + + + + + + - - + + - - + + - - + + |
this.sMenuId = "grammalecte_menu" + nMenu;
this.xButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_main_button", textContent: " "});
this.xButton.onclick = () => { this.switchMenu(); };
this.xButton.style.zIndex = (xNode.style.zIndex.search(/^[0-9]+$/) !== -1) ? (parseInt(xNode.style.zIndex) + 1).toString() : xNode.style.zIndex;
this.xMenu = this._createMenu();
let style = window.getComputedStyle(this.xNode);
|
| ︙ |