summaryrefslogtreecommitdiffstats
path: root/extensions/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
blob: 3c4325abe59b7385df8c86a2a23db02f93367cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**

 * $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $

 *

 * @author Moxiecode

 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.

 */



(function() {

	tinymce.create('tinymce.plugins.AutoSavePlugin', {

		init : function(ed, url) {

			var t = this;



			t.editor = ed;



			window.onbeforeunload = tinymce.plugins.AutoSavePlugin._beforeUnloadHandler;

		},



		getInfo : function() {

			return {

				longname : 'Auto save',

				author : 'Moxiecode Systems AB',

				authorurl : 'http://tinymce.moxiecode.com',

				infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave',

				version : tinymce.majorVersion + "." + tinymce.minorVersion

			};

		},



		// Private plugin internal methods



		'static' : {

			_beforeUnloadHandler : function() {

				var msg;



				tinymce.each(tinyMCE.editors, function(ed) {

					if (ed.getParam("fullscreen_is_enabled"))

						return;



					if (ed.isDirty()) {

						msg = ed.getLang("autosave.unload_msg");

						return false;

					}

				});



				return msg;

			}

		}

	});



	// Register plugin

	tinymce.PluginManager.add('autosave', tinymce.plugins.AutoSavePlugin);

})();