To answer your question, though, that package still works . . . here's something I wrote. It runs fine.
Make sure you're correctly calling the div that you're swiping. In my case it's a div with class="headertitle". I'm using the swipe to switch pages with iron router . . . put whatever you like there, it should run fine.
Template.goalsList.events({
'swipedown .headertitle': function(e) {
Router.go('logOut');
}
});
Charlie Magee