]> source.dussan.org Git - gwtquery.git/commit
Allow to use customized animations. And Fixes.
authorManolo Carrasco <manolo@apache.org>
Sat, 3 Jan 2015 19:03:49 +0000 (20:03 +0100)
committerManolo Carrasco <manolo@apache.org>
Sat, 3 Jan 2015 19:48:21 +0000 (20:48 +0100)
commit85b16030e9636d01c98971b837818d182b3a657e
tree32182b051e3c0a6db50d34c4f13a74bbbc089dde
parent29e9e508cbf08a239f44f9d7df447cd32e9426b5
Allow to use customized animations. And Fixes.

In this patch there are many fixes found when playing with plugins.
Also I have refactored Effects and Transitions plugins so as it is
easier to extend and implement customized animations.
Now we use properties instead of the Fx.css3 hack to disable modern
animations.
14 files changed:
gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml
gwtquery-core/src/main/java/com/google/gwt/query/QueryMin.gwt.xml
gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsCache.java
gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsUtils.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Effects.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/Fx.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/PropertiesAnimation.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/Transform.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/Transitions.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/TransitionsAnimation.java
gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryDeferredTestGwt.java
gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEffectsTestGwt.java