Skip to content

MissAllSunday/summernoteDrafts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

summernoteDrafts

A summernote plugin for saving and retrieving drafts.

Demo

Setup

requires store.js version 2.0 or higher to save/get drafts. See the demo code to get a CDN url for it.

Include lib/summernoteDrafts.js and append both sDraftsLoad and sDraftsSave buttons to your summernote toolbar:

$('.summernote').summernote({
    toolbar:[
        ['misc', ['sDraftsLoad', 'sDraftsSave']]
    ]
});

Options

$.extend($.summernote.options, {
  sDrafts: {
	storePrefix: 'sDrafts'
	dateFormat: null
	saveIcon: null
	loadIcon: null
  }
});
  • 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 here

	return dateFormat;
};

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?'
  }
});

License

Released under the MIT license

About

A summernote plugin for saving and retrieving drafts

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published