Differences From Artifact [2cae186485]:
- File gc_lang/fr/modules-js/conj.js — part of check-in [5dd4693a8f] at 2017-08-08 17:31:11 on branch webext2_fix — [core] add isInit in object conj, phonet, mfsp to prevent loading data twice (user: IllusionPerdu, size: 21763) [annotate] [blame] [check-ins using]
To Artifact [f441399830]:
- File gc_lang/fr/modules-js/conj.js — part of check-in [6cea30d5de] at 2017-08-08 17:45:08 on branch webext2_fix — [core] set isInit to true when the object was initialized (user: IllusionPerdu, size: 21795) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lVtyp = _oData.lVtyp;
this._lTags = _oData.lTags;
this._dPatternConj = _oData.dPatternConj;
this._dVerb = _oData.dVerb;
}
catch (e) {
console.error(e);
}
},
_zStartVoy: new RegExp("^[aeéiouœê]"),
| > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lVtyp = _oData.lVtyp;
this._lTags = _oData.lTags;
this._dPatternConj = _oData.dPatternConj;
this._dVerb = _oData.dVerb;
this.isInit = true;
}
catch (e) {
console.error(e);
}
},
_zStartVoy: new RegExp("^[aeéiouœê]"),
|
| ︙ | ︙ |