Generic Backbone SwipeView integration.
npm install backbone.swipeview var SlideList = SwipeView.extend({
subview: SlideDetail,
swipeview_options: {
loop: true
}
});
var slide_list = new SlideList({
el: '#wrapper',
collection: slides,
swipeview_options: {
loop: true
}
});
slide_list.render();
1. `$ npm install
2. $ grunt
The example requires grunt and npm to be installed globally. If not
available they may be installed (or upgraded) by running:
1. npm install -g npm
2. npm install -g grunt`