vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | <Bindings> |
2 | <!-- Bindings.xml file for TrapsBar --> |
||
3 | <!-- Show me my config ... Sweetness! --> |
||
4 | <Binding name="Load TrapsBar Config" header="TRAPSBAR"> |
||
5 | TrapsBarConfig:Show(); |
||
6 | </Binding> |
||
7 | <!-- end --> |
||
8 | <!-- Hide/Unhide the Bar --> |
||
9 | <Binding name="Hide/Unhide TrapsBar"> |
||
10 | local frame = getglobal("TrapsBar"); |
||
11 | if (frame) then |
||
12 | if( frame:IsVisible() ) then |
||
13 | frame:Hide(); |
||
14 | else |
||
15 | frame:Show(); |
||
16 | end |
||
17 | end |
||
18 | </Binding> |
||
19 | <!-- end --> |