summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/Zepto/stack.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) (unidiff)
tree57748b9a76e592ae35b165cd6a203e12493d4044 /frontend/gamma/js/Zepto/stack.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/stack.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/Zepto/stack.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/frontend/gamma/js/Zepto/stack.js b/frontend/gamma/js/Zepto/stack.js
deleted file mode 100644
index c995285..0000000
--- a/frontend/gamma/js/Zepto/stack.js
+++ b/dev/null
@@ -1,22 +0,0 @@
1// Zepto.js
2// (c) 2010-2012 Thomas Fuchs
3// Zepto.js may be freely distributed under the MIT license.
4
5;(function($){
6 $.fn.end = function(){
7 return this.prevObject || $()
8 }
9
10 $.fn.andSelf = function(){
11 return this.add(this.prevObject || $())
12 }
13
14 'filter,add,not,eq,first,last,find,closest,parents,parent,children,siblings'.split(',').forEach(function(property){
15 var fn = $.fn[property]
16 $.fn[property] = function(){
17 var ret = fn.apply(this, arguments)
18 ret.prevObject = this
19 return ret
20 }
21 })
22})(Zepto)