Sha256: 2549980c42ba0e18d6bf11b4908bb36ff11c95a56e8c85c39401bb6c10051826
Contents?: true
Size: 560 Bytes
Versions: 51
Compression:
Stored size: 560 Bytes
Contents
// 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)
Version data entries
51 entries across 51 versions & 4 rubygems