From: Kevin <ke...@ke...> - 2003-04-06 11:53:44
|
Hello, I found that false wasn't being set when using the dictionary object. In dynlayer_base.js: DynLayer() -this.visible = (args.visible||true); +this.visible = (args.visible==false)?false:true; -this._textSelectable = (args.textSelectable||true); +this._textSelectable = (args.textSelectable==false)?false:true; - Kevin |