Hey... there's a (not so great) Drag & Drop example. It's more in Engine than in famous-views, but obviously that all still works very well once you wrap it.
Yeah, I wish we had more docs & examples on the website... it will take a while until we get there, but I have much bigger plans than how we did the old site :>
Moving forward (with famous events), the pattern I'm likely to go with is via helpers, similar to the direction I suspect Blaze is going to go in. e.g.
template(name="x")
+Node _eventMap=myMap
Template.x.helpers({
myMap: {
'drag': function(event) {
// `this` would be the fview, or maybe as a 2nd arg
}
}
});
If you already know what you want to do, let me know how each of those patterns serve your purposes :>