You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
290 B
21 lines
290 B
11 years ago
|
var BlockHeader = new Class({
|
||
|
|
||
|
Extends: BlockNavigation,
|
||
|
|
||
|
create: function(){
|
||
|
var self = this;
|
||
|
|
||
|
self.parent();
|
||
|
|
||
|
self.el.adopt(
|
||
|
self.logo = new Element('a.logo', {
|
||
|
'html': '<span>Couch</span><span>Potato</span>',
|
||
|
'href': App.createUrl('')
|
||
|
}),
|
||
|
self.nav
|
||
|
);
|
||
|
|
||
|
}
|
||
|
|
||
|
});
|