mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
toolbar: missing var declaration
Without this, Etherpad would fail to start in strict mode: "ReferenceError: SelectButton is not defined"
This commit is contained in:
parent
27b3b0ecd2
commit
fb1f8dd239
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ _.extend(Button.prototype, {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
SelectButton = function (attributes) {
|
var SelectButton = function (attributes) {
|
||||||
this.attributes = attributes;
|
this.attributes = attributes;
|
||||||
this.options = [];
|
this.options = [];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue