From acba346463b1b2c0be489a553f12fcd28d383f05 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Thu, 13 Oct 2016 16:17:30 +0800 Subject: fix files with MIT or BSD licenses in testapi moving tornado_swagger/static/ dir under 3rd_party/ dir JIRA: RELENG-156 Change-Id: I8c15f6776a7626d5837982d5961106a120f0c7a5 Signed-off-by: SerenaFeng --- .../3rd_party/static/lib/jquery.wiggle.min.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 utils/test/result_collection_api/3rd_party/static/lib/jquery.wiggle.min.js (limited to 'utils/test/result_collection_api/3rd_party/static/lib/jquery.wiggle.min.js') diff --git a/utils/test/result_collection_api/3rd_party/static/lib/jquery.wiggle.min.js b/utils/test/result_collection_api/3rd_party/static/lib/jquery.wiggle.min.js new file mode 100644 index 000000000..2adb0d6d5 --- /dev/null +++ b/utils/test/result_collection_api/3rd_party/static/lib/jquery.wiggle.min.js @@ -0,0 +1,8 @@ +/* +jQuery Wiggle +Author: WonderGroup, Jordan Thomas +URL: http://labs.wondergroup.com/demos/mini-ui/index.html +License: MIT (http://en.wikipedia.org/wiki/MIT_License) +*/ +jQuery.fn.wiggle=function(o){var d={speed:50,wiggles:3,travel:5,callback:null};var o=jQuery.extend(d,o);return this.each(function(){var cache=this;var wrap=jQuery(this).wrap('
').css("position","relative");var calls=0;for(i=1;i<=o.wiggles;i++){jQuery(this).animate({left:"-="+o.travel},o.speed).animate({left:"+="+o.travel*2},o.speed*2).animate({left:"-="+o.travel},o.speed,function(){calls++;if(jQuery(cache).parent().hasClass('wiggle-wrap')){jQuery(cache).parent().replaceWith(cache);} +if(calls==o.wiggles&&jQuery.isFunction(o.callback)){o.callback();}});}});}; \ No newline at end of file -- cgit 1.2.3-korg