toolbar: missing var declaration

Without this, Etherpad would fail to start in strict mode:
  "ReferenceError: SelectButton is not defined"
This commit is contained in:
muxator 2018-08-27 01:34:01 +02:00
parent 27b3b0ecd2
commit fb1f8dd239

View file

@ -116,7 +116,7 @@ _.extend(Button.prototype, {
SelectButton = function (attributes) {
var SelectButton = function (attributes) {
this.attributes = attributes;
this.options = [];
};