summaryrefslogtreecommitdiff
path: root/doc/sample_html/jquery.debounce.min.js
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-12-26 16:45:06 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-12-26 16:45:06 -0500
commit27bfe05dfeaed0bafb3f975a3461daed563c6723 (patch)
tree7efed551ad624a49d5ff4a66a900aad5cc40dc2a /doc/sample_html/jquery.debounce.min.js
parent3133b4a757ccfc026113ea991decbc60183b02be (diff)
downloadpython-coveragepy-git-27bfe05dfeaed0bafb3f975a3461daed563c6723.tar.gz
This file changed name
Diffstat (limited to 'doc/sample_html/jquery.debounce.min.js')
-rw-r--r--doc/sample_html/jquery.debounce.min.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/sample_html/jquery.debounce.min.js b/doc/sample_html/jquery.debounce.min.js
deleted file mode 100644
index 648fe5d3..00000000
--- a/doc/sample_html/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);