You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
storePrefix The unique name to help identify each saved draft
dateFormat a callback to format the date of each draft, accepts a single parameter, a date string in ISO format and should return a formatted date string.
dateFormat: function(dateFormat){// apply some pretty format to the date herereturndateFormat;};
By default the plugin shows a date in raw ISO format.
saveIcon An option to replace the default save text
loadIcon An option to replace the default load text
Language strings
$.extend($.summernote.lang['en-US'],{sDrafts: {save: 'Save draft',load: 'Load Drafts',select: 'select the draft you want to load',provideName: 'Provide a name for this draft',saved: 'Draft was successfully saved',loaded: 'Draft was successfully loaded',deleteAll: 'Delete all drafts',noDraft: 'The selected draft couldn\'t be loaded, try again or select another one',nosavedDrafts: 'There aren\'t any drafts saved',deleteDraft: 'delete',youSure: 'Are you sure you want to do this?'}});