619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
|
let xProgressNode = document.getElementById("build_progress");
let oDAWG = new DAWG(lEntry, "Français - dictionnaire personnel", "S", xProgressNode);
this.oJSON = oDAWG.createBinary(1);
this.save();
oWidgets.hideElement("build_progress");
oWidgets.showElement("export_button");
// debug
console.log(oDAWG.morph("finis"));
let oIBDAWG = new IBDAWG(this.oJSON);
for (let e of oIBDAWG.select()) {
console.log(e);
}
},
save: function () {
|
>
|
>
>
|
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
|
let xProgressNode = document.getElementById("build_progress");
let oDAWG = new DAWG(lEntry, "Français - dictionnaire personnel", "S", xProgressNode);
this.oJSON = oDAWG.createBinary(1);
this.save();
oWidgets.hideElement("build_progress");
oWidgets.showElement("export_button");
// debug
for (let e of oDAWG.select()) {
console.log(e);
}
console.log("=======");
let oIBDAWG = new IBDAWG(this.oJSON);
for (let e of oIBDAWG.select()) {
console.log(e);
}
},
save: function () {
|