vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2  
3 Slash_GM
4 ========
5  
6 Description:
7 ------------
8 Provides a command line mechanism to open the helpframe.
9  
10 Revision History:
11 -----------------
12 04.12.05 v0.10
13 Initial release.
14  
15 ]]
16  
17 function Slash_GM_OnLoad()
18 SlashCmdList["SLASHGM"] = Slash_GM_Handler;
19 SLASH_SLASHGM1 = "/gm";
20 end
21  
22 function Slash_GM_Handler()
23 RunScript(ToggleHelpFrame());
24 return;
25 end
26