diff options
-rw-r--r-- | demos/effect/easing.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/demos/effect/easing.html b/demos/effect/easing.html index 4bee1c41f..3014f7620 100644 --- a/demos/effect/easing.html +++ b/demos/effect/easing.html @@ -26,8 +26,12 @@ height = 100; $.each( $.easing, function( name, impl ) { + // Skip _default property + if ( typeof impl !== "function" ) { + return; + } var graph = $( "<div>" ).addClass( "graph" ).appendTo( "#graphs" ), - text = $( "<div>" ).text( ++i + ". " + name ).appendTo( graph ), + text = $( "<div>" ).text( name ).css({ fontSize: "13px", textAlign: "center", whiteSpace: "nowrap" }).appendTo( graph ), wrap = $( "<div>" ).appendTo( graph ).css( 'overflow', 'hidden' ), canvas = $( "<canvas>" ).appendTo( wrap )[ 0 ]; |