Patches item #422544, was opened at 2001-05-08 21:18
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305757&aid=422544&group_id=5757

Category: DynAPI 2 API
Group: None
>Status: Closed
>Resolution: Later
Priority: 5
Submitted By: Michael Pemberton (mpember)
Assigned to: Nobody/Anonymous (nobody)
Summary: Document Scrollbar show/hide

Initial Comment:
DynDocument.prototype.setScrollBars=function(visible) {
        if (is.ns4) {
                if (!this.oldHeight) {
                        this.oldHeight=this.doc.height; // this keeps track of the old 
values
                        this.oldWidth=this.doc.width;
                };
                this.doc.width=visible ? this.oldWidth : this.elm.innerWidth;
                this.doc.height=visible ? this.oldHeight : this.elm.innerHeight;
        } else document.body.scroll=visible?"yes":"no";
};


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305757&aid=422544&group_id=5757

_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to