mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
fix wrong class-name for attributes in constructor call
This commit is contained in:
@ -30,7 +30,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
require("./et2_core_common");
|
||||
var et2_core_inheritance_1 = require("./et2_core_inheritance");
|
||||
var et2_core_widget_1 = require("./et2_core_widget");
|
||||
var et2_core_DOMWidget_1 = require("./et2_core_DOMWidget");
|
||||
var et2_core_baseWidget_1 = require("./et2_core_baseWidget");
|
||||
require("./et2_types");
|
||||
/**
|
||||
@ -44,7 +43,7 @@ var et2_button = /** @class */ (function (_super) {
|
||||
function et2_button(_parent, _attrs, _child) {
|
||||
var _this =
|
||||
// Call the inherited constructor
|
||||
_super.call(this, _parent, _attrs, et2_core_inheritance_1.ClassWithAttributes.extendAttributes(et2_core_DOMWidget_1.et2_DOMWidget._attributes, _child || {})) || this;
|
||||
_super.call(this, _parent, _attrs, et2_core_inheritance_1.ClassWithAttributes.extendAttributes(et2_button._attributes, _child || {})) || this;
|
||||
_this.legacyOptions = ["image", "ro_image"];
|
||||
_this.label = "";
|
||||
_this.clicked = false;
|
||||
|
Reference in New Issue
Block a user