SimpleSlideView icon indicating copy to clipboard operation
SimpleSlideView copied to clipboard

A nifty little jQuery or Zepto plugin for the simplest of sliding views.

Results 6 SimpleSlideView issues
Sort by recently updated
recently updated
newest added

Currently, the `changeView` method _requires_ a value for the `action` argument of either `"push"` or `"pop"`. It would be nice if the source order of the views could determine the...

enhancement

To be more adherent to [jQuery plugin guidelines](http://plugins.jquery.com/docs/publish/), we should create a `SimpleSlideView.jquery.json` file in our repo.

Hi @tylersticka I'm seeing a couple of values getting computed for default options that I think are partially vestigial from Zepto. Specifically: ``` duration: ($.fx !== null) && ($.fx.cssPrefix !==...

question

Hiya! This line in `lib/simpleslideview.js`: https://github.com/cloudfour/SimpleSlideView/blob/master/lib/simpleslideview.js#L266 Is in the `beforeChangeEnd` callback: ``` javascript beforeChangeEnd = function() { if (_this.options.resizeHeight) { if (_this.options.maintainViewportHeight && window.innerHeight > _this.lastViewportHeight) { _this.lastViewportHeight = window.innerHeight;...

question

Currently, when you initialize the plugin, it always attaches the data-attribute helpers to the container. It would be nice if that were the _default_ behavior, but you could also broaden...

enhancement

Although theoretically possible, we should demonstrate some sort of history support in one or all of the demos. If we find this to be a royal pain, we should consider...

enhancement