(js) Don't allow drag'n'drop of invitations

pull/27/merge
Francis Lachapelle 2016-08-04 14:25:29 -04:00
parent 7f5e06c020
commit fea6978b63
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -23,6 +23,7 @@ Bug fixes
- [web] fixed avatar image in autocompletion
- [web] restored expunge of current mailbox when leaving the Mail module
- [web] added support for multiple description values in LDAP entries (#3750)
- [web] don't allow drag'n'drop of invitations
- [eas] fixed long GUID issue preventing sometimes synchronisation (#3460)
- [core] fixing sogo-tool backup with multi-domain configuration but domain-less logins
- [core] during event scheduling, use 409 instead of 403 so Lightning doesn't fail silently

View File

@ -22,7 +22,7 @@
function link(scope, element, attrs, calendarDayCtrl) {
if (scope.block) {
if (scope.block.component.editable) {
if (scope.block.component.editable && !scope.block.userState) {
// Add dragging grips to existing event block
initGrips();
}