vj12
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

submit.js
application/javascript

Download raw (260 bytes)

function() {
  var form = $(this);
  var fdoc = form.serializeObject();
  fdoc.created_at = new Date();
  fdoc.profile = $$("#profile").profile;
  $$(this).app.db.saveDoc(fdoc, {
    success : function() {
      form[0].reset();
    }
  });
  return false;
};