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/"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML/UI.xsd">
4  
5 <!-- Event Frame -->
6 <Frame name="AceEventFrame" parent="UIParent">
7 <Scripts>
8 <OnLoad>
9 this:RegisterEvent("PLAYER_ENTERING_WORLD")
10 </OnLoad>
11 <OnEvent>
12 ace.event:EventHandler()
13 </OnEvent>
14 </Scripts>
15 </Frame>
16  
17 <Frame name="AceStateFrame" parent="UIParent" hidden="true">
18 <Scripts>
19 <OnUpdate>
20 AceState:Finish()
21 </OnUpdate>
22 </Scripts>
23 </Frame>
24 </Ui>