Files
GTA4RP/third-party/mexui/Core/Entry/DropDownItem.js
Vortrex caa6b3986f Revert "Update xml"
This reverts commit 9b8d1f2257.
2021-01-26 04:16:05 -06:00

7 lines
196 B
JavaScript

mexui.Entry.DropDownItem = function(dropDown, text)
{
mexui.Component.Entry.call(this, dropDown, 1);
this.text = text;
};
mexui.util.extend(mexui.Entry.DropDownItem, mexui.Component.Entry);