Displaying 2 results from an estimated 2 matches for "elem_id".
2005 Dec 02
1
Can I pass options to these effects to control the speed?
Hi There,
I am playing around with Effect.Grow and Effect.BlindDown. I was wondering
if there is a way to control the speed at which these effects execute.
Also, for Grow it seems to exapnd from the middle. I am trying to achieve
something more like a flyout from the left. Any ideas on how I can do this?
Thanks
--
Bruce Christie
_______________________________________________
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...label+"] ";
+ button_img.setAttributeNode(alt_attr);
+ var title_attr=document.createAttribute("TITLE");
+ title_attr.value=label;
+ button_img.setAttributeNode(title_attr);
+ button.appendChild(button_img);
+ button.onclick=fn;
+ return button;
+}
+
+function create_term(elem_id,title,rows,cols,p,charset,scrollback) {
+ if (open) {
+ alert("Terminal is already open");
+ return;
+ }
+ title=substitute_variables(title);
+ frame=document.getElementById(elem_id);
+ if (!frame) {
+ alert("There is no element named '"+elem_id+"' in...