Browser Tab label stating 'Seaside'

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

Browser Tab label stating 'Seaside'

Maarten Mostert-2
Hi,
I would like to change my browser tab label from 'Seaside' to my website name.
This must be very simple.

But where can I find it ?

Regards,

@+Maarten,

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

Re: Browser Tab label stating 'Seaside'

Boris Popov, DeepCove Labs (SNN)
updateRoot: aHtmlRoot
 super updateRoot: aHtmlRoot.
 aHtmlRoot title: 'Boo'.

-Boris

> On Nov 24, 2013, at 13:58, "Maarten Mostert" <[hidden email]> wrote:
>
> Hi,
> I would like to change my browser tab label from 'Seaside' to my website name.
> This must be very simple.
>
> But where can I find it ?
>
> Regards,
>
> @+Maarten,
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>

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

Re: Browser Tab label stating 'Seaside'

Bob Arning-2
In reply to this post by Maarten Mostert-2
updateRoot: anHtmlRoot

    super updateRoot: anHtmlRoot.
    anHtmlRoot title: self pageTitle.


Cheers,
Bob

On 11/24/13 1:58 PM, Maarten Mostert wrote:
Hi,
I would like to change my browser tab label from 'Seaside' to my website name.
This must be very simple.

But where can I find it ?

Regards,

@+Maarten,

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside



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

Re: Browser Tab label stating 'Seaside'

Johan Brichau-2
In reply to this post by Maarten Mostert-2
Override #updateRoot: htmlRoot on your component and implement it as follows:

updateRoot: htmlRoot
        super updateRoot: htmlRoot
        htmlRoot title: ‘My superduper webapp’

On 24 Nov 2013, at 19:58, Maarten Mostert <[hidden email]> wrote:

> Hi,
> I would like to change my browser tab label from 'Seaside' to my website name.
> This must be very simple.
>
> But where can I find it ?
>
> Regards,
>
> @+Maarten,
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

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

Re: Browser Tab label stating 'Seaside'

Maarten Mostert-2
Thanks all, works !



Le 24 nov. 2013 à 20:09, Johan Brichau <[hidden email]> a écrit :

> Override #updateRoot: htmlRoot on your component and implement it as follows:
>
> updateRoot: htmlRoot
> super updateRoot: htmlRoot
> htmlRoot title: ‘My superduper webapp’
>
> On 24 Nov 2013, at 19:58, Maarten Mostert <[hidden email]> wrote:
>
>> Hi,
>> I would like to change my browser tab label from 'Seaside' to my website name.
>> This must be very simple.
>>
>> But where can I find it ?
>>
>> Regards,
>>
>> @+Maarten,
>>
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside