I am using Meteor-Dragula. Lets says I drag a container that has the String hello
into the #right
DOM element. How do I access that string? Say, pushing it into a String array.
Maybe I'm on the right track with something like this?
x = [];
Template.dragulaTemplate.events({
"drop #right1": function(el) {
x.push(el);
}
});