add Public list, peers can add items to that list

This commit is contained in:
j 2019-01-17 23:49:23 +05:30
commit f05a212a82
8 changed files with 55 additions and 13 deletions

View file

@ -229,8 +229,8 @@ oml.ui.folders = function() {
);
}
},
'delete': function() {
!index && oml.ui.deleteListDialog().open();
'delete': function(data) {
!index && !Ox.contains(data.ids, ':Public') && oml.ui.deleteListDialog().open();
},
key_control_d: function() {
oml.addList(ui._list);