by the way, here is some code to tell the browsers window height and
scroll position.

window.f_height = function() { return([window.innerHeight ?
window.innerHeight : null, document.documentElement ?
document.documentElement.clientHeight : null, document.body ?
document.body.clientHeight : null].compact().first()); }

window.f_scrollTop = function() { return ([window.pageYOffset ?
window.pageYOffset : null, document.documentElement ?
document.documentElement.scrollTop : null, document.body ?
document.body.scrollTop : null].compact().first() ); }



On Jun 7, 1:01 am, Frederic Gaus <[EMAIL PROTECTED]> wrote:
> Hi Tobie,
>
> well, I would prefer something like a new Browser Class. So We could use
>
> Browser.type.IE
> Browser.type.Safari
>
> instead of
>
> Prototype.Browser.IE.
>
> These do not really belong to "Prototype". Further we could move
> BrowserFeatures to Browser.feature.
>
> Then we could implement
>
> Browser.getWidth
> Browser.getHeight
>
> What do you think?
>
> Tobie Langel schrieb:
>
>
>
> > Hi Freddy,
>
> > There's a ticket in tract for that already.
>
> > the main thing that has been delaying it's implementation is finding
> > the right names for these mrthods, so any suggestion is welcomed.
>
> > Best,
>
> > Tobie
>
> > On Jun 6, 6:14 pm, Freddy <[EMAIL PROTECTED]> wrote:
> >> Hi Guys,
>
> >> as far as i know there is no possibility to calculate the size of
> >> browserwindow with prototype yet. But this could be very useful to
> >> place e.g. a div-popup in the middle of the window.
>
> >> I always use my own functions. If you also see a common need I would
> >> create a sample patch to include it in prototype. What do you think,
> >> is this useful or to specialized?
>
> --
> Frederic Gaus                                 pgp-key: 93E6903C
> fingerprint: 0C55 4517 CC1E 5F7F 9059  3535 AB54 D8E8 93E6 903C


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to