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

1.0.0 2017-04-23 15:38 UTC

This package is auto-updated.

Last update: 2024-04-10 21:13:07 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'],
    ],
  ],
];