You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var effectsEffectClip = $.effects.define( "clip", "hide", function( options, done ) {
var start,
animate = {},
element = $( this ),
direction = options.direction || "vertical",
both = direction === "both",
horizontal = both || direction === "horizontal",
vertical = both || direction === "vertical";
The text was updated successfully, but these errors were encountered:
http://api.jqueryui.com/clip-effect/ documentation specifies the following settings for the clip effect:
However,
up
should beboth
according to http://code.jquery.com/ui/1.12.1/jquery-ui.js:The text was updated successfully, but these errors were encountered: