mirror of
https://github.com/wekan/wekan.git
synced 2026-01-16 22:45:29 +01:00
Added back feature: Toggle Drag Handles. Improved positions of Add List etc buttons.
Thanks to xet7 !
This commit is contained in:
parent
00793c39f8
commit
5cb712bee4
12 changed files with 85 additions and 86 deletions
8
server/publications/userDesktopDragHandles.js
Normal file
8
server/publications/userDesktopDragHandles.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Meteor.publish('userDesktopDragHandles', function() {
|
||||
if (!this.userId) return this.ready();
|
||||
return Meteor.users.find({ _id: this.userId }, {
|
||||
fields: {
|
||||
'profile.showDesktopDragHandles': 1
|
||||
}
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue