Members
(constant) interact
interact('#draggable').draggable(true)
var rectables = interact('rect')
rectables
.gesturable(true)
.on('gesturemove', function (event) {
// ...
})
The methods of this variable can be used to set elements as interactables and also to change various default settings.
Calling it as a function and passing an element or a valid CSS selector string returns an Interactable object which has various methods to configure it.
- Source:
Methods
preventDefault()
Prevent the default behaviour of the original Event
stopImmediatePropagation()
Don't call any other listeners (even on the current target)
stopPropagation()
Don't call listeners on the remaining targets