iw/static/ckeditor/plugins
Mikko Lehtisalo 054ee5e40a Initial commit 2014-06-17 21:54:21 +03:00
..
a11yhelp/dialogs Initial commit 2014-06-17 21:54:21 +03:00
about/dialogs Initial commit 2014-06-17 21:54:21 +03:00
autosave Initial commit 2014-06-17 21:54:21 +03:00
clipboard/dialogs Initial commit 2014-06-17 21:54:21 +03:00
dialog Initial commit 2014-06-17 21:54:21 +03:00
extimage Initial commit 2014-06-17 21:54:21 +03:00
fakeobjects/images Initial commit 2014-06-17 21:54:21 +03:00
image Initial commit 2014-06-17 21:54:21 +03:00
link Initial commit 2014-06-17 21:54:21 +03:00
magicline/images Initial commit 2014-06-17 21:54:21 +03:00
pastefromword/filter Initial commit 2014-06-17 21:54:21 +03:00
scayt Initial commit 2014-06-17 21:54:21 +03:00
specialchar/dialogs Initial commit 2014-06-17 21:54:21 +03:00
table/dialogs Initial commit 2014-06-17 21:54:21 +03:00
tabletools/dialogs Initial commit 2014-06-17 21:54:21 +03:00
wsc Initial commit 2014-06-17 21:54:21 +03:00
README.md Initial commit 2014-06-17 21:54:21 +03:00
icons.png Initial commit 2014-06-17 21:54:21 +03:00

README.md

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.

####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';