1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-05 08:18:06 +00:00

Further refinements to the list mechanism

Much better navigation animation for classic view
This commit is contained in:
Jeremy Ruston
2012-10-26 22:12:40 +01:00
parent 865e26bbce
commit 324a87a8a2
6 changed files with 67 additions and 21 deletions

View File

@@ -92,20 +92,20 @@ var eventNameMappings = {
"transitionEnd": {
correspondingCssProperty: "transition",
mappings: {
transition: "transitionEnd",
transition: "transitionend",
OTransition: "oTransitionEnd",
MSTransition: "msTransitionEnd",
MozTransition: "transitionEnd",
MozTransition: "transitionend",
webkitTransition: "webkitTransitionEnd"
}
},
"animationEnd": {
correspondingCssProperty: "animation",
mappings: {
animation: "animationEnd",
animation: "animationend",
OAnimation: "oAnimationEnd",
MSAnimation: "msAnimationEnd",
MozAnimation: "animationEnd",
MozAnimation: "animationend",
webkitAnimation: "webkitAnimationEnd"
}
}