vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
2 ..\..\FrameXML\UI.xsd">
3 <Button name="GameMenuButtonLoadIT" inherits="GameMenuButtonTemplate" text="LoadIT" parent="GameMenuFrame">
4 <Anchors>
5 <Anchor point="TOP" relativeTo="GameMenuButtonKeybindings" relativePoint="BOTTOM">
6 <Offset>
7 <AbsDimension x="0" y="-1"/>
8 </Offset>
9 </Anchor>
10 </Anchors>
11 <Scripts>
12 <OnLoad>
13 GameMenuFrame:SetHeight(GameMenuFrame:GetHeight() + this:GetHeight());
14 GameMenuButtonMacros:SetPoint("TOP", this:GetName(), "BOTTOM", 0, -1);
15 if (myGameMenuButtonAddOns) then
16 this:SetPoint("TOP", myGameMenuButtonAddOns, "BOTTOM", 0, -1);
17 end
18 </OnLoad>
19 <OnClick>
20 PlaySound("igMainMenuOption");
21 HideUIPanel(GameMenuFrame);
22 LoadITmenu_ToggleMenu();
23 </OnClick>
24 </Scripts>
25 </Button>
26 </Ui>