mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-10 22:50:04 +01:00
644891059e
JQTouch and Zepto are tentatively used for the mobile version of Clipperz. No final commitment has been made, though.
23 lines
560 B
JavaScript
23 lines
560 B
JavaScript
// Zepto.js
|
|
// (c) 2010-2012 Thomas Fuchs
|
|
// Zepto.js may be freely distributed under the MIT license.
|
|
|
|
;(function($){
|
|
$.fn.end = function(){
|
|
return this.prevObject || $()
|
|
}
|
|
|
|
$.fn.andSelf = function(){
|
|
return this.add(this.prevObject || $())
|
|
}
|
|
|
|
'filter,add,not,eq,first,last,find,closest,parents,parent,children,siblings'.split(',').forEach(function(property){
|
|
var fn = $.fn[property]
|
|
$.fn[property] = function(){
|
|
var ret = fn.apply(this, arguments)
|
|
ret.prevObject = this
|
|
return ret
|
|
}
|
|
})
|
|
})(Zepto)
|