mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
12 lines
208 B
CoffeeScript
12 lines
208 B
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
], (App) ->
|
||
|
App.directive "draggable", () ->
|
||
|
return {
|
||
|
link: (scope, element, attrs) ->
|
||
|
element.draggable
|
||
|
delay: 250
|
||
|
opacity: 0.7
|
||
|
helper: "clone"
|
||
|
scroll: true
|
||
|
}
|