1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
DotDeploy/resources/public/lib/jquery.slideto.min.js
Tony Grosinger 24afe901b9 Started adding api documentation
Using Swagger. Visit the root directory to see it in action or /api-docs
to see the raw json files.
2014-06-26 20:27:05 -07:00

2 lines
369 B
JavaScript

(function(b){b.fn.slideto=function(a){a=b.extend({slide_duration:"slow",highlight_duration:3E3,highlight:true,highlight_color:"#FFFF99"},a);return this.each(function(){obj=b(this);b("body").animate({scrollTop:obj.offset().top},a.slide_duration,function(){a.highlight&&b.ui.version&&obj.effect("highlight",{color:a.highlight_color},a.highlight_duration)})})}})(jQuery);