jmpressjs / jmpress.js

A jQuery plugin to build a website on the infinite canvas
http://jmpressjs.github.com/jmpress.js
1.5k stars 237 forks source link

dynamicform #115

Open ravindragoud opened 11 years ago

ravindragoud commented 11 years ago

hi, i want to load the slides dynamically need to add the animation, so how can we add the animation for all the slides from one jsp. we are able to get the slides through ajax but we are unable to get the animation

sokra commented 11 years ago

It seem to be a bug, that animations are not applied on steps loaded per ajax.

As workaround try to add this code somewhere:

$.jmpress('ajax:afterStepLoaded', function(step, eventData) {
  $(eventData.jmpress).jmpress('reapplyStep', step);
});