93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
+
|
this.xProgressBar.max = lFlex.length;
this.xProgressBar.value = 1;
for (let lData of lFlex) {
this._addRow(lData);
this.xProgressBar.value += 1;
}
this.xProgressBar.value = this.xProgressBar.max;
window.setTimeout(() => { this.xProgressBar.value = 0; }, 2000);
}
this.lEntry = lFlex;
this.nEntry = lFlex.length;
this.showEntryNumber();
}
addEntries (lFlex) {
|
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
-
|
let oJSON = oDAWG.createBinaryJSON(1);
oFileHandler.saveFile("fr.personal.json", JSON.stringify(oJSON));
this.oIBDAWG = new IBDAWG(oJSON);
this.setDictData(this.oIBDAWG.nEntry, this.oIBDAWG.sDate);
//browser.runtime.sendMessage({ sCommand: "setDictionary", dParam: {sType: "personal", oDict: oJSON}, dInfo: {} });
enableElement("export_button");
} else {
prefs.setCharPref("oPersonalDictionary", "");
oFileHandler.deleteFile("fr.personal.json");
this.setDictData(0, "[néant]");
disableElement("export_button");
}
},
import: function () {
|