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
{{ message }}
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
@@ -19,6 +19,10 @@ To keep up to date with how FlexSlider's development roadmap looks, please see o
19
19
20
20
## Updates
21
21
22
+
** Version 2.5.0 **
23
+
24
+
** Bumped compatibility support starting with jQuery 1.7+. pausePlay icon fix. Firefox touch event fix. Adds customDirectionNav param **
25
+
22
26
** Version 2.4.0 **
23
27
24
28
** Update for improved standards. Adds classes to li nav elements. Reset for li elements in stylesheet. **
@@ -44,7 +48,7 @@ To keep up to date with how FlexSlider's development roadmap looks, please see o
44
48
## General Notes
45
49
FlexSlider is no longer licensed under the MIT license. FlexSlider now uses the license, GPLv2 and later.
46
50
47
-
In an effort to move the plugin forward, support for jQuery 1.3.2 has been dropped. The plugin now requires jQuery 1.4.2+. If you don't have access to the later versions of jQuery, [FlexSlider 1.8](https://github.com/woothemes/FlexSlider/tree/flexslider1) should be a perfectly suitable substitute for your needs!
51
+
In an effort to move the plugin forward, support for jQuery 1.4.2 has been dropped. The plugin now requires jQuery 1.7.0+. If you don't have access to the later versions of jQuery, [FlexSlider 1.8](https://github.com/woothemes/FlexSlider/tree/flexslider1) should be a perfectly suitable substitute for your needs!
48
52
49
53
Your old styles and properties *might not work out of the box*. Some property names have been changed, noted below, as well as namespacing prefixes being applied to all elements. This means that `.flex-direction-nav .next` is now `.flex-direction-nav .flex-next` by default. The namespacing property is exposed, free for you to change.
50
54
@@ -69,6 +73,7 @@ Two new methods are available for adding/removing slides, `slider.addSlide()` an
@@ -137,6 +142,11 @@ Previously called "keyboardNav" in v1.8 and below.
137
142
### controlsContainer: *{updated}*
138
143
`controlsContainer` is one of the more painstaking, potentially confusing properties within FlexSlider. First, the property is no longer required to workaround `overflow: hidden` on slide animation. Second, the property now accepts a **jQuery object**, giving you precise control over the object you want. The plugin no longer attempts to guess what element you are selecting.
139
144
145
+
### customDirectionNav: *{new}*
146
+
`customDirectionNav` allows the ability to add custom directional navigation elements. Can be used in conjunction with controlsContainer for pagination controls container.
147
+
148
+
*[Example of customDirectionNav being used](http://flexslider.woothemes.com/basic-slider-with-custom-direction-nav.html)*
149
+
140
150
### sync: *{new}*
141
151
`sync` is a new property that will allow other slider(s) to hook into the current slider via a given selector. The selector should describe an object that has already been initialized as a FlexSlider. Right now, `sync` will synchronize animation, play, and pause behaviors. More behaviors can be added in the future as the property matures.
0 commit comments