-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
44 lines (40 loc) · 2 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
1.3
New:
- Added itemControl which allows you to specify effects, timers and other
options on an per item basis.
- Added randomEffect, randomEffects, itemControl randomEffect,
itemControl randomEffects. You can use randomEffect to get random effects on
each rotation. Control which effects you want with the randomEffects array.
randomEffect and randomEffects can also be specified on an per item basis
using the new itemControl system, which allows for very fine-tuned item
control.
- Added new effect, none (false), which allows pure CSS effects on items.
- Added debug and debugLevel, debug will output various debug data to the
firebug console while with debugLevel you can control what type of debug
data you want in the console.
- Added a test-suite to easier spot bugs during development.
Changes:
- Default effect was changed from fade to false (none).
- Renamed class to AdvancedListRotatorClass
- Renamed jQuery function to advListRotator
- Renamed file to advListRotator
- Renamed option listRotatorHelper to helper
- Default value for option activeItemClass changed to alrActiveItem
- Renamed option activeHelperItemClass to helperActiveItemClass
- Default value for option helperActiveItemClass to alrHelperActiveItem
Fixes:
- Corrected a bug in the shuffle function which caused the first rotation to end
prematurely.
1.2
New:
- Added nextItemElement, nextItemElementInteraction, previousItemElement,
previousItemElementInteraction to manually move forward and backwards in
a list.
Fixes:
- Removed support for 'drop' effect because of IE problems. Possible fix for
this issue caused black borders around transparent pngs in IE which further
complicated fix. Removing support was best option for now. The original
problem seems to be that the drop effect removes the element from DOM
which IE is unable to restore on show(), the only way to restore it was to
add 100% opacity in addition to calling show(), but this caused the black
border problem.