makinacorpus / drupal-dragula
Carries the Drugula library
Installs: 30
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 14
Forks: 1
Open Issues: 0
Language:CSS
Type:drupal-module
This package is auto-updated.
Last update: 2024-11-10 22:32:06 UTC
README
This modules provides the Dragula library, with nothing else than a simple
hook_library()
implementation.
Its identifier is ['dragula', 'dragula']
.
In order to use it, either add it as a dependency in your own library or attach it this way:
$render = [ // ... your element info, render array, ... '#attached' => [ 'library' => [ ['dragula', 'dragula'], ], ], ];