You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var cube = $('#cube');
$.jmpress("register", "up", function() {
var stepData = cube.jmpress("active").data("stepData");
if(stepData.up)
cube.jmpress("select", stepData.up);
});
Using AngularJS routing (or simple ajax to bring different views), rebuilding a slider like the one presented above will not work since I cannot overwrite an event.
/** * Register a callback or a jmpress function * * @access public * @param name String the name of the callback or function * @param func Function? the function to be added */functionregister(name,func){if($.isFunction(func)){if(methods[name]){$.error("function "+name+" is already registered.");}else{methods[name]=func;}}
The text was updated successfully, but these errors were encountered:
@mikibrv
Do you know a good port or wrapper of jmpress for angular? I started an angular jmpress wrapper for personal purposes because I didn't find any: https://github.com/web-stories/angular-jmpress
If I would like to dynamically add/remove a slide I can just set a watch for a specific variable and call a method storing the reference to the jmpress object.
Considering the cube example:
http://jmpressjs.github.io/jmpress.js/examples/cube/#/front
Using AngularJS routing (or simple ajax to bring different views), rebuilding a slider like the one presented above will not work since I cannot overwrite an event.
The text was updated successfully, but these errors were encountered: