mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-10 23:00:04 +01:00
644891059e
JQTouch and Zepto are tentatively used for the mobile version of Clipperz. No final commitment has been made, though.
22 lines
581 B
JavaScript
22 lines
581 B
JavaScript
// 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)
|