7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
LWWidget.Menu.Command = LWWidget.Menu.Item.inherits({
|
|
|
|
constructor: function (name, text) {
|
|
this.base(name, text, true, false, ' - ');
|
|
}
|
|
|
|
});
|