ball6847 / CKEditor-AutoSave-Plugin

Auto Save Plugin for the CKEditor which automatically saves the content (via HTML5 LocalStorage)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CKEditor-AutoSave-Plugin

Auto Save Plugin for the CKEditor which automatically saves the content (via HTML5 LocalStorage) temporarly (for example when a login session times out). And after the content is saved it can be restored when the editor is reloaded.

####How the Plugin works

The Plugin saves the content every 25 seconds (can be defined in the Config - autosave_delay), but only when the content has changed.

And when the Editor Page is reloaded and auto saved content is found and its different from the content loaded with the editor the user will be asked if the auto saved content should be loaded instead.

Screenshot

####License

Licensed under the terms of the MIT License.

####Installation

  1. Extract the contents of the file into the "plugins" folder of CKEditor.
  2. In the CKEditor configuration file (config.js) add the following code:
config.extraPlugins = 'autosave';

#####Optional

####Auto save Key The Default autosavekey can be overridden from the config ...

config.autosave_SaveKey = 'autosaveKey';

####Ignore Content older then X The Default Minutes (Default is 1440 which is one day) after the auto saved content is ignored can be overidden from the config ...

config.autosave_NotOlderThan = 1440;

####Save Content on Destroy Setting to Save content on editor destroy (Default is false) ...

config.autosave_saveOnDestroy = false;

####Save Detection Selectors Setting to set the Save button to inform the plugin when the content is saved by the user and doesn't need to be stored temporary ...

config.autosave_saveDetectionSelectors = "a[href^='javascript:__doPostBack'][id*='Save'],a[id*='Cancel']";

About

Auto Save Plugin for the CKEditor which automatically saves the content (via HTML5 LocalStorage)


Languages

Language:JavaScript 99.1%Language:CSS 0.9%Language:Shell 0.0%