Does Seaside support the <body id="foo"> html tag?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Does Seaside support the <body id="foo"> html tag?

Rick Flower
I poked around in the Seaside source using the browser but couldn't find
anything that seemed relevant to where the <body> tags get created.  Any
ideas on where I should look or if it supports it?

Thanks!

-- Rick

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Does Seaside support the <body id="foo"> html tag?

Lukas Renggli
> I poked around in the Seaside source using the browser but couldn't find
> anything that seemed relevant to where the <body> tags get created.  Any
> ideas on where I should look or if it supports it?

SomeComponentClass>>updateRoot: aHtmlRoot
     super updateRoot: aHtmRoot.
     aHtmlRoot bodyAttributes at: 'foo' put: 'bar'

--
Lukas Renggli
http://www.lukas-renggli.ch
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Does Seaside support the <body id="foo"> html tag?

Rick Flower
Lukas Renggli wrote:

>> I poked around in the Seaside source using the browser but couldn't find
>> anything that seemed relevant to where the <body> tags get created.  Any
>> ideas on where I should look or if it supports it?
>>    
>
> SomeComponentClass>>updateRoot: aHtmlRoot
>      super updateRoot: aHtmRoot.
>      aHtmlRoot bodyAttributes at: 'foo' put: 'bar'
>
>  
Thanks! I'll give it a try!
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside