21 lines
631 B
XML
21 lines
631 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<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/ ..\FrameXML\UI.xsd">
|
|
|
|
<Frame name="IWIAOptionFrame" toplevel="true" movable="true" parent="UIParent" enableMouse="true" hidden="true">
|
|
|
|
<Scripts>
|
|
<OnLoad>
|
|
IWIA_OnLoad()
|
|
this:RegisterEvent("LEARNED_SPELL_IN_TAB")
|
|
this:RegisterEvent("SPELLS_CHANGED")
|
|
</OnLoad>
|
|
<OnEvent>
|
|
IWIA_OnSpellChanged()
|
|
</OnEvent>
|
|
</Scripts>
|
|
</Frame>
|
|
</UI>
|