Displaying 1 result from an estimated 1 matches for "button_t".
Did you mean:
button_to
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...alert("The clipboard seems to be empty");
+ return;
+ }
+
+ if (confirm('Click OK to "type" the following into the terminal:\n'+p)) {
+ process_key(p);
+ }
+}
+
+
+function create_button(label,fn) {
+ var button=document.createElement("A");
+ var button_t=document.createTextNode("["+label+"] ");
+ button.appendChild(button_t);
+ button.onclick=fn;
+ return button;
+}
+
+function create_img_button(imgfn,label,fn) {
+ var button=document.createElement("A");
+ var button_img=document.createElement("IMG");
+...