"use strict"; function start_css_code_editor(win_id, code_editor_type = "css") { return; var editor_type = null; editor_type = code_editor_type; if (!is_code_editor_type_valid(editor_type)) { return; } hide_window_content_for_code_editor(win_id); place_embedded_code_editor_panel(win_id, editor_type); set_code_editor_container_width(win_id); set_code_editor_container_height(win_id); place_code_editor_iframe_contents(win_id, editor_type); on_resize_adjust_iframe_size(win_id, editor_type); self.addEventListener("mousemove", function () { set_code_editor_container_width(win_id); set_code_editor_container_height(win_id); ////resize_menu_bar(win_id); resize_tabs_bar(win_id); on_resize_adjust_iframe_size(win_id, editor_type); }); }