6f48cb8609
Added nice animations too.
13 lines
No EOL
290 B
CoffeeScript
13 lines
No EOL
290 B
CoffeeScript
((w) ->
|
|
|
|
w.glAnimate = ($el, animation, done) ->
|
|
$el
|
|
.removeClass()
|
|
.addClass(animation + ' animated')
|
|
.one 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', ->
|
|
$(this).removeClass()
|
|
return
|
|
return
|
|
return
|
|
|
|
) window |