Displaying 4 results from an estimated 4 matches for "onhelp".
2004 Jun 09
1
Using macros
...uot;macro")
attr(ff, "source") <- c(deparse(mm), deparse(expr))
## return the macro
ff
}
OKCancelHelp <- defmacro(window=top, OKbutton=OKbutton, onOK=onOK,
cancelButton=cancelButton, onCancel=onCancel,
helpButton=helpButton, onHelp=onHelp, helpSubject,
expr={
OKbutton <- tkbutton(window, text="OK", fg="darkgreen",
width="12", command=onOK, default="active")
onCancel <- function() {
tkdestroy(top)
}
canc...
2016 Jul 08
0
Wine release 1.9.14
...mshtml.idl: Added IHTMLElement6 declaration.
mshtml: Added IHTMLElement6 stub implementation.
mshtml: Added IHTMLElement6::on* properties implementation for supported events.
mshtml: Added FIXME for drag and dragstart events.
mshtml: Added IHTMLElement::ondragstart and onhelp properties implementation.
mshtml: Added IHTMLElement2::onscroll and onresize properties implementation.
mshtml: Added missing release_dispex call in HTMLRect destructor.
mshtml: Added IHTMLElement6::getElementsByClassName implementation.
mshtml.idl: Added IHTMLElement6 meth...
2012 Sep 14
0
Wine release 1.5.13
...dded IHTMLIFrameElement2 and IHTMLIFrameElement3 declarations.
mshtml: Added IHTMLIFrameElement2 stub implementation.
mshtml: Added IHTMLIFrameElement3 stub implementation.
mshtml: Properly expose frame and iframe element's windows to scripts.
mshtml: Added IHTMLWindow2::onhelp property implementation.
mshtml: Added IHTMLStyle::put_pixelWidth implementation.
mshtml: Added IHTMLElement::contains implementation.
jscript: Fixed empty cases in the end of switch statement.
wininet: Set last error for invalid URL argument.
vbscript: Fixed uninitial...
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...dChild(term);
+ term.className="term a p";
+ var termbody=document.createTextNode("");
+ term.appendChild(termbody);
+ visible_height_frac=Number(rows)/(Number(rows)+Number(scrollback));
+ if (scrollback>0) {
+ term.style.overflowY="scroll";
+ }
+ document.onhelp = function() { return false; };
+ document.onkeypress=keypress;
+ document.onkeydown=keydown;
+ open_term(rows,cols,p,charset,scrollback);
+ if (open) {
+ window.onbeforeunload=warn_unload;
+ get();
+ maybe_send();
+ }
+}
+
+
+function warn_unload() {
+ if (open) {
+ return "...