Displaying 1 result from an estimated 1 matches for "title_p".
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...t;);
+ return;
+ }
+ title=substitute_variables(title);
+ frame=document.getElementById(elem_id);
+ if (!frame) {
+ alert("There is no element named '"+elem_id+"' in which to build a terminal");
+ return;
+ }
+ frame.className="termframe";
+ var title_p=document.createElement("P");
+ title_p.appendChild(create_img_button("copy.gif","Copy",copy_to_clipboard));
+ title_p.appendChild(create_img_button("paste.gif","Paste",paste_from_clipboard));
+ title_p.appendChild(create_ctrlkey_menu());
+ var t...