Sha256: 7faf9013e3e033f568dc31b2d8369c5e1a9365b7f62583f815589f92c1e8cd02
Contents?: true
Size: 560 Bytes
Versions: 3
Compression:
Stored size: 560 Bytes
Contents
// Zepto.js // (c) 2010-2014 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
3 entries across 3 versions & 1 rubygems