summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/Zepto/assets.js
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
commit0608e045f6aa471916829468f48082ea07a453f4 (patch) (side-by-side diff)
tree57748b9a76e592ae35b165cd6a203e12493d4044 /frontend/gamma/js/Zepto/assets.js
parent074e70457c90344b3c1cb236105638d692a0066b (diff)
downloadclipperz-0608e045f6aa471916829468f48082ea07a453f4.zip
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.gz
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.bz2
Removed extra JS libraries no longer used for the mobile version
Diffstat (limited to 'frontend/gamma/js/Zepto/assets.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/Zepto/assets.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/frontend/gamma/js/Zepto/assets.js b/frontend/gamma/js/Zepto/assets.js
deleted file mode 100644
index b5a5712..0000000
--- a/frontend/gamma/js/Zepto/assets.js
+++ b/dev/null
@@ -1,21 +0,0 @@
-// Zepto.js
-// (c) 2010-2012 Thomas Fuchs
-// Zepto.js may be freely distributed under the MIT license.
-
-;(function($){
- var cache = [], timeout
-
- $.fn.remove = function(){
- return this.each(function(){
- if(this.parentNode){
- if(this.tagName === 'IMG'){
- cache.push(this)
- this.src = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='
- if (timeout) clearTimeout(timeout)
- timeout = setTimeout(function(){ cache = [] }, 60000)
- }
- this.parentNode.removeChild(this)
- }
- })
- }
-})(Zepto)