add some missing semi-colons

This commit is contained in:
Damien Churchill 2008-11-06 07:52:39 +00:00
parent 5b96fd1d49
commit 277b75e66b
1 changed files with 6 additions and 6 deletions

View File

@ -11,14 +11,14 @@ Deluge.Widgets.Toolbar = new Class({
Extends: Widgets.Base,
initialize: function() {
this.parent($('toolbar'))
this.buttons = this.element.getFirst()
this.parent($('toolbar'));
this.buttons = this.element.getFirst();
this.buttons.getElements('li').each(function(el) {
el.addEvent('click', function(e) {
e.action = el.id
this.fireEvent('buttonClick', e)
}.bind(this))
}, this)
e.action = el.id;
this.fireEvent('buttonClick', e);
}.bind(this));
}, this);
}
});