author | Dan |
Thu, 15 Nov 2007 17:52:53 -0500 | |
changeset 255 | ba28d43a6b86 |
parent 117 | 7cfdbb2fd17a |
child 335 | 67bd3121a12e |
permissions | -rw-r--r-- |
1 | 1 |
// Javascript routines for the page editor |
2 |
||
117
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
3 |
var enano_tinymce_options = { |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
4 |
mode : "exact", |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
5 |
elements : '', |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
6 |
plugins : 'table', |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
7 |
theme_advanced_resize_horizontal : false, |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
8 |
theme_advanced_resizing : true, |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
9 |
theme_advanced_toolbar_location : "top", |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
10 |
theme_advanced_toolbar_align : "left", |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
11 |
theme_advanced_buttons1_add : "fontselect,fontsizeselect", |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
12 |
theme_advanced_buttons3_add_before : "tablecontrols,separator", |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
13 |
theme_advanced_statusbar_location : 'bottom' |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
14 |
}; |
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
15 |
|
40
723bb7acf914
Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents:
1
diff
changeset
|
16 |
var initTinyMCE = function(e) |
1 | 17 |
{ |
18 |
if ( typeof(tinyMCE) == 'object' ) |
|
19 |
{ |
|
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
40
diff
changeset
|
20 |
if ( !KILL_SWITCH ) |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
40
diff
changeset
|
21 |
{ |
117
7cfdbb2fd17a
Bugfix in Special:AllPages; fixed tinyMCE under Opera (finally!)
Dan
parents:
57
diff
changeset
|
22 |
tinyMCE.init(enano_tinymce_options); |
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
40
diff
changeset
|
23 |
} |
1 | 24 |
} |
25 |
} |
|
26 |
addOnloadHook(initTinyMCE); |
|
27 |