be more smart with label assignments to selection in headline context menu

This commit is contained in:
Andrew Dolgov 2012-08-23 23:59:46 +04:00
parent c5fe614fef
commit 3e7b0bd435
1 changed files with 14 additions and 4 deletions

View File

@ -1930,16 +1930,26 @@ function initHeadlinesMenu() {
label: name,
labelId: bare_id,
onClick: function(event) {
selectionAssignLabel(this.labelId,
[this.getParent().ownerMenu.callerRowId]);
var ids = getSelectedArticleIds2();
// cast to string
var id = this.getParent().ownerMenu.callerRowId + "";
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
selectionAssignLabel(this.labelId, ids);
}}));
labelDelMenu.addChild(new dijit.MenuItem({
label: name,
labelId: bare_id,
onClick: function(event) {
selectionRemoveLabel(this.labelId,
[this.getParent().ownerMenu.callerRowId]);
var ids = getSelectedArticleIds2();
// cast to string
var id = this.getParent().ownerMenu.callerRowId + "";
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
selectionRemoveLabel(this.labelId, ids);
}}));
});