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 <Script file="TitanBMRecLevel.lua"/>
4 <Frame parent="UIParent">
5 <Frames>
6 <Button name="TitanPanelBRLButton" inherits="TitanPanelComboTemplate" frameStrata="FULLSCREEN" toplevel="true">
7 <Scripts>
8 <OnLoad>
9 if (IsAddOnLoaded("Titan")) then
10 TitanPanelBRLButton_OnLoad();
11 TitanPanelButton_OnLoad();
12 end
13 </OnLoad>
14 <OnEvent>
15 if (IsAddOnLoaded("Titan")) then
16 TitanPanelBRLButton_OnEvent();
17 end
18 </OnEvent>
19 <OnEnter>
20 TitanBRLButton_OnEnter();
21 </OnEnter>
22 <OnLeave>
23 TitanBRLButton_OnLeave();
24 </OnLeave>
25 </Scripts>
26 </Button>
27 </Frames>
28 </Frame>
29 </Ui>