Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging

This commit is contained in:
ansuz
2017-03-13 19:32:15 +01:00
3 changed files with 33 additions and 3 deletions

View File

@@ -345,11 +345,11 @@ define([
// since it would remove the input
$input.on('mousedown', function (e) {
e.stopPropagation();
$input.parents('li').attr("draggable", false);
$input.parents('.element-row').attr("draggable", false);
});
$input.on('mouseup', function (e) {
e.stopPropagation();
$input.parents('li').attr("draggable", true);
$input.parents('.element-row').attr("draggable", true);
});
},0);
};