There are a few JS ajustments to this groups webpages (wiki & blog)
- The ICT & TS Podcast link at the top left is redirected to the blog.
- The wiki link at the top left is renamed to About
- The blog link renamed to Podcast
- Link added to ICT & TS
file contents:
Event.observe(window, 'load', function() {
// add another header link (to apple.com) by manipulating the DOM
// using script.aculo.us Builder
// we'll just insert it before the search button
if ($('linkSearch')) {
$('linkSearch').parentNode.insertBefore(Builder.node('li',
{id:'linkECC'}, [
Builder.node('a', {href:'http://www.ea.n-lanark.sch.uk/ecc'}, 'ICT & TS')
]), $('linkSearch'));
}
// change the Other Wikis link to something else
if ($('linkWik')) {
//alert ('hey');
$('linkWik').down('a').innerHTML = 'About';
$('linkWik').style.display='inline';
}
if($('linkBlo')){
$('linkBlo').down('a').innerHTML='Podcast';
$('linkBlo').style.display='inline';
}
if($('group_title')){
$('group_title').href='/groups/podcasts/blog';
}
});
Comments