mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-18 01:16:56 +00:00
批量导出html成功, 待添加到notebook上
This commit is contained in:
@@ -2319,8 +2319,14 @@ Note.initContextmenu = function() {
|
||||
var menuItem = new gui.MenuItem({
|
||||
label: menu.label,
|
||||
click: function(e) {
|
||||
var note = Note.getNote($(self.target).attr('noteId'));
|
||||
clickBac && clickBac(note);
|
||||
if (Note.inBatch) {
|
||||
var noteIds = Note.getBatchNoteIds();
|
||||
}
|
||||
else {
|
||||
var noteIds = [$(self.target).attr('noteId')];
|
||||
}
|
||||
// var note = Note.getNote();
|
||||
clickBac && clickBac(noteIds);
|
||||
}
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user