autosave: { // The storage key to use for storing the draft in local storage. // Key should start with "sce-autodraft-" for the autosave plugin to // remove it if it is passed the expires. // Defaults to "sce-autodraft-" plus the path and query string: storageKey: 'sce-autodraft-' + location.pathname + location.search;, // Save handler function, see below for data object saveHandler: function (data) { ... }, // Load handler function, see below for data object loadHandler: function () { ... return data; }, // Number of milliseconds to keep drafts before clearing when using the // default load and save handlers. // Defaults to 24 hrs expires: 86400000 }