We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Meteor, I have a template
<template name="tasks"> <ul class="list-group"> {{#each tasks}} {{> task}} {{/each}} </ul> </template>
in which I initialize dragula with
Template.tasks.onRendered( function () { dragula( [ this.find( 'ul' ) ] ); } );
It gets initialized but when I am dragging an element, I get the errors
Uncaught TypeError: Cannot read property 'appendChild' of null [dragula.js:463] Uncaught TypeError: Cannot read property 'className' of null [dragula.js:28]
I am loading dragula.js with meteor-bower.
meteor-bower
What is wrong?
The text was updated successfully, but these errors were encountered:
See #248
Sorry, something went wrong.
No branches or pull requests
In Meteor, I have a template
in which I initialize dragula with
It gets initialized but when I am dragging an element, I get the errors
I am loading dragula.js with
meteor-bower
.What is wrong?
The text was updated successfully, but these errors were encountered: