summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/Zepto/form.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) (side-by-side diff)
tree57748b9a76e592ae35b165cd6a203e12493d4044 /frontend/gamma/js/Zepto/form.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/form.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/Zepto/form.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/frontend/gamma/js/Zepto/form.js b/frontend/gamma/js/Zepto/form.js
deleted file mode 100644
index 4d562a6..0000000
--- a/frontend/gamma/js/Zepto/form.js
+++ b/dev/null
@@ -1,40 +0,0 @@
-// Zepto.js
-// (c) 2010-2012 Thomas Fuchs
-// Zepto.js may be freely distributed under the MIT license.
-
-;(function ($) {
- $.fn.serializeArray = function () {
- var result = [], el
- $( Array.prototype.slice.call(this.get(0).elements) ).each(function () {
- el = $(this)
- var type = el.attr('type')
- if (this.nodeName.toLowerCase() != 'fieldset' &&
- !this.disabled && type != 'submit' && type != 'reset' && type != 'button' &&
- ((type != 'radio' && type != 'checkbox') || this.checked))
- result.push({
- name: el.attr('name'),
- value: el.val()
- })
- })
- return result
- }
-
- $.fn.serialize = function () {
- var result = []
- this.serializeArray().forEach(function (elm) {
- result.push( encodeURIComponent(elm.name) + '=' + encodeURIComponent(elm.value) )
- })
- return result.join('&')
- }
-
- $.fn.submit = function (callback) {
- if (callback) this.bind('submit', callback)
- else if (this.length) {
- var event = $.Event('submit')
- this.eq(0).trigger(event)
- if (!event.defaultPrevented) this.get(0).submit()
- }
- return this
- }
-
-})(Zepto)