Popup editors now available as option for some list selectors.
[fa-stable.git] / includes / page / footer.inc
index da53a925c1e93e63cdafa7b45aa078d10142f5d0..7256dfe1aa41cb4910993cc2dc22b03c9b703d8f 100644 (file)
 ***********************************************************************/
 function page_footer($no_menu=false, $is_index=false)
 {
-       global $path_to_root, $js_lib, $Validate, $Editors;
-
-       if (in_ajax())
-               return;// just for speed up
+       global $path_to_root, $js_lib, $Validate, $Editors, $Ajax;
 
        if (!$is_index && function_exists('hyperlink_back'))
                hyperlink_back();
@@ -22,10 +19,13 @@ function page_footer($no_menu=false, $is_index=false)
        $rend = new renderer();
        $rend->menu_footer($no_menu, $is_index);
 
+       $edits = "editors = ".JsHttpRequest::php2js($Editors).";";
+       $Ajax->addScript('editors', $edits);
+
        echo "<script>
                _focus = '" . get_post('_focus') . "';
                _validate = " . JsHttpRequest::php2js($Validate).";
-               var editors = ".JsHttpRequest::php2js($Editors).";
+               var $edits
        </script>";
 
        add_user_js_data();