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 <Frame name="BuddySyncFrame" parent="FriendsFrame" hidden="true">
5 <Scripts>
6 <OnLoad>
7 this:RegisterEvent("CHAT_MSG_SYSTEM");
8 this:RegisterEvent("VARIABLES_LOADED");
9 this:RegisterEvent("FRIENDLIST_UPDATE");
10 </OnLoad>
11 <OnEvent>
12 BuddySync:BS_onEVENT(event);
13 </OnEvent>
14 </Scripts>
15 </Frame>
16 <Button name="BuddySyncFrameEditIgnoreButton" inherits="UIPanelButtonTemplate" text="IgnoreSync" parent="IgnoreListFrame">
17 <Size>
18 <AbsDimension x="95" y="21"/>
19 </Size>
20 <Anchors>
21 <Anchor point="TOPRIGHT" relativeTo="FriendsFrameCloseButton" relativePoint="BOTTOMRIGHT">
22 <Offset>
23 <AbsDimension x="-15" y="-5"/>
24 </Offset>
25 </Anchor>
26 </Anchors>
27 <Scripts>
28 <OnClick>
29 BuddySync:BS_onSYNC();
30 </OnClick>
31 </Scripts>
32 </Button>
33 </Ui>