Scripting

From Memento Database Wiki
Revision as of 22:59, 13 January 2017 by UnConnoisseur (talk | contribs)
Jump to navigation Jump to search
« Page as of 2017-01-13, editions Mobile 4.2.1, Desktop 1.0.7 »

This page is a stub, with some tidbits. A more complete page is forthcoming.

Native Memento Calculation scripting

Scripting for the Calculation field type is described in Calculation field.

Scripting Memento in JavaScript

Scripting in JavaScript is available in JavaScript field and Triggers.

The JavaScript field type

TBD

JavaScript scripting for Memento Triggers

TBD

moment.min.js — a possibly useful wrapper for JavaScript dates & times

See http://momentjs.com and its subordinate pages Guides and Docs.

Tidbit
To get the current date, use moment().toDate(). To get the current date & time, use moment().toDate().getTime().

TBD