Overview
| Comment: | [fr][js] lexicographe: nettoyage |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fr | kill_innerHTML |
| Files: | files | file ages | folders |
| SHA3-256: |
3996597b39cf2b84fdaeaf2bf8995856 |
| User & Date: | olr on 2017-07-13 07:12:23 |
| Original Comment: | [fr] lexicographe: nettoyage |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-07-13
| ||
| 16:44 | [fx][js] gc_panel revamping (part 1) check-in: a83903f529 user: olr tags: fx, kill_innerHTML | |
| 07:12 | [fr][js] lexicographe: nettoyage check-in: 3996597b39 user: olr tags: fr, kill_innerHTML | |
| 07:08 | [core][js] tokenizer: yield separator one by one check-in: 492169bd6f user: olr tags: core, kill_innerHTML | |
Changes
Modified gc_lang/fr/modules-js/lexicographe.js from [52486b3ce8] to [673a7bbf6a].
| ︙ | ︙ | |||
244 245 246 247 248 249 250 |
}
catch (e) {
helpers.logerror(e);
}
return null;
};
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
}
catch (e) {
helpers.logerror(e);
}
return null;
};
_formatTags (sTags) {
let sRes = "";
sTags = sTags.replace(/V([0-3][ea]?)[itpqnmr_eaxz]+/, "V$1");
let m;
while ((m = this._zTag.exec(sTags)) !== null) {
sRes += _dTAGS.get(m[0]);
if (sRes.length > 100) {
|
| ︙ | ︙ |