12 lines
141 B
JavaScript
12 lines
141 B
JavaScript
var BlockFooter = new Class({
|
|
|
|
Extends: BlockBase,
|
|
|
|
create: function(){
|
|
var self = this;
|
|
|
|
self.el = new Element('div.footer');
|
|
}
|
|
|
|
});
|