add some missing semi-colons
This commit is contained in:
parent
5b96fd1d49
commit
277b75e66b
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue