There's a little bug in version 0.1. The jq_visual_effect helper generates the default speed with an unquoted string. For example, it should be:$('#me').fadeTo('normal', opa, function(){});
but the buggy method generates:$('#me').fadeTo(normal, opa, function(){});
There are 2 ways to eliminate this bug.
- You can pass the
:speedargument with"'slow'","'normal'"or"'fast'"(i.e. add the quote yourself). - The other way is to modify the
jq_visual_effecthelper inlib/jq4r.rband add quotes around${speed}.





No comments:
Post a Comment