From ecdb61f3cec722599909a9cedf346422df96cdf9 Mon Sep 17 00:00:00 2001 From: Ben Finney Date: Fri, 15 Jul 2016 05:14:06 +1000 Subject: Name the debounce library to the canonical upstream filename. --- coverage/htmlfiles/jquery.ba-throttle-debounce.min.js | 9 +++++++++ coverage/htmlfiles/jquery.debounce.min.js | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 coverage/htmlfiles/jquery.ba-throttle-debounce.min.js delete mode 100644 coverage/htmlfiles/jquery.debounce.min.js (limited to 'coverage/htmlfiles') diff --git a/coverage/htmlfiles/jquery.ba-throttle-debounce.min.js b/coverage/htmlfiles/jquery.ba-throttle-debounce.min.js new file mode 100644 index 0000000..648fe5d --- /dev/null +++ b/coverage/htmlfiles/jquery.ba-throttle-debounce.min.js @@ -0,0 +1,9 @@ +/* + * jQuery throttle / debounce - v1.1 - 3/7/2010 + * http://benalman.com/projects/jquery-throttle-debounce-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); diff --git a/coverage/htmlfiles/jquery.debounce.min.js b/coverage/htmlfiles/jquery.debounce.min.js deleted file mode 100644 index 648fe5d..0000000 --- a/coverage/htmlfiles/jquery.debounce.min.js +++ /dev/null @@ -1,9 +0,0 @@ -/* - * jQuery throttle / debounce - v1.1 - 3/7/2010 - * http://benalman.com/projects/jquery-throttle-debounce-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); -- cgit v1.2.1 From ffb9fff5795be45e92a015dbaba16c3eb8360ccb Mon Sep 17 00:00:00 2001 From: Ben Finney Date: Fri, 15 Jul 2016 05:14:41 +1000 Subject: Correct references to the debounce library file. --- coverage/htmlfiles/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/htmlfiles') diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index ee2deab..1e3999f 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -11,7 +11,7 @@ {% endif %} - + -- cgit v1.2.1