Recent Posts by Ajaxy

Subscribe to Recent Posts by Ajaxy 4 post(s) found

Jan 5, 2008
Avatar Ajaxy 4 post(s)

Topic: Help/Bug / big bug with destroying win, with fix

hi.

look at 228 line in window.js, destroy() method..
—-
if (this.options.url) this.content.src = null
—-

and we got a url transfer to http://null

better write something like
—-
if(this.options.url)
{ this.content.setAttribute(‘src’,’about:blank’); this.content.removeAttribute(‘src’);
}
—-

hey@ajaxy.ru
—-

 
Jan 5, 2008
Avatar Ajaxy 4 post(s)

Topic: Help/Bug / wired mode drag bug in IE

found issue..
it was an ‘iefix’ hidden iframe.

needed to call _fixIEOverlapping() method in the bottom of _endDrag() one.

hey@ajaxy.ru

 
Oct 29, 2007
Avatar Ajaxy 4 post(s)

Topic: Help/Bug / wired mode drag bug in IE

thanks for great work!

..
it seems like some invisible layer remains at the old place of window, after moving it..
nothing at this place can be clicked or selected..

http://prototype-window.xilinus.com/current/sam…

just move the wired drag mode window on another, then remove and try to close the lower..

IE6.

 
Oct 23, 2007
Avatar Ajaxy 4 post(s)

Topic: Help/Bug / alphacube skin bug in opera

Hello.

I got bug with alphacube skin in opera when something black appears near minimize/maximize/close buttons.

http://prototype-window.xilinus.com/themes.html – it disapears here, but not in my site.. :(

thank you.