Current section

Files

Jump to
ex_admin web static js active_admin ext jquery.js.coffee
Raw

web/static/js/active_admin/ext/jquery.js.coffee

# `serializeArray` generates => [{ name: 'foo', value: 'bar' }]
# This function remaps it to => { foo: 'bar' }
$.fn.serializeObject = ->
obj = {}
for o in @serializeArray()
obj[o.name] = o.value
obj