Lines Matching refs:name

80 function wysiwyg_show_view(name) {  argument
81 wysiwyg_hide("wysiwyg_editor_"+name);
83 wysiwyg_show("wysiwyg_view_"+name);
88 function wysiwyg_show_editor(name) { argument
89 wysiwyg_hide('wysiwyg_view_'+name);
91 wysiwyg_show('wysiwyg_editor_'+name);
102 oEditor = FCKeditorAPI.GetInstance(name);
112 function wysiwyg_confirm_save(name) { argument
119 function wysiwyg_quit(name) { argument
120 oEditor = FCKeditorAPI.GetInstance(name);
127 ajax.setVar('name',name);
131 var html = wysiwyg_pending[name];
133 wysiwyg_show_view(name);
151 function wysiwyg_save_complete(name) { argument
152 wysiwyg_show_view(name);
156 function wysiwyg_send_to_page(html, name) { argument
157 html = '<div class="wysiwyg_view_' + name + ' wysiwyg_view">' + html;
158 …over="wysiwyg_highlight(\'' +name +'\');" onmouseout="wysiwyg_unhighlight(\'' +name +'\');" onclic…
159 page_blocks = getElementsByClass('wysiwyg_view_' + name);
166 function wysiwyg_send_to_server(html, name) { argument
168 wysiwyg_send_to_page(html, name);
172 ajax.setVar('name',name);
175 ajax.onCompletion = function() { wysiwyg_save_complete(name, ajax); };
180 function wysiwyg_save(name) { argument
181 if(!wysiwyg_confirm_save(name)) { return false; }
182 var oEditor = FCKeditorAPI.GetInstance(name);
184 wysiwyg_send_to_server(html, name);
188 function _wysiwyg_edit(name, ajax) { argument
203 oEditor = FCKeditorAPI.GetInstance(name);
205 wysiwyg_pending[name] = html;
208 wysiwyg_show_editor(name);
211 function wysiwyg_edit(name) { argument
216 ajax.onCompletion = function() { _wysiwyg_edit(name, ajax); };
229 function _wysiwyg_has (name) { argument
231 if (__wysiwyg_started[i] == name) { return true; }
236 function wysiwyg_highlight(name) { argument
237 var theDiv = "wysiwyg_view_"+name;
247 function wysiwyg_unhighlight(name) { argument
248 el = document.getElementById("wysiwyg_view_"+name);