overleaf/services/web/public/src/ide/file-tree/directives/draggable.js

26 lines
728 B
JavaScript
Raw Normal View History

/* eslint-disable
no-undef,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
define(['base'], App =>
App.directive('draggable', () => ({
link(scope, element, attrs) {
return scope.$watch(attrs.draggable, function(draggable) {
if (draggable) {
return element.draggable({
delay: 250,
opacity: 0.7,
scroll: true,
helper: scope.$eval(attrs.draggableHelper)
})
}
})
}
})))