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