vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Bindings>
2 <Binding name="SW_BIND_TOGGLEBARS" header="SW_BINDINGS" runOnUp="true">
3 if ( keystate == "down" ) then
4 SW_ToggleBarFrame();
5 end
6 </Binding>
7 <Binding name="SW_BIND_CONSOLE" runOnUp="true">
8 if ( keystate == "down" ) then
9 SW_ToggleConsole();
10 end
11 </Binding>
12 <Binding name="SW_BIND_PAGE1" >
13 if ( keystate == "down" ) then
14 SW_OptKey("1");
15 end
16 </Binding>
17 <Binding name="SW_BIND_PAGE2" >
18 if ( keystate == "down" ) then
19 SW_OptKey("2");
20 end
21 </Binding>
22 <Binding name="SW_BIND_PAGE3" >
23 if ( keystate == "down" ) then
24 SW_OptKey("3");
25 end
26 </Binding>
27 <Binding name="SW_BIND_PAGE4" >
28 if ( keystate == "down" ) then
29 SW_OptKey("4");
30 end
31 </Binding>
32 <Binding name="SW_BIND_PAGE5" >
33 if ( keystate == "down" ) then
34 SW_OptKey("5");
35 end
36 </Binding>
37 <Binding name="SW_BIND_PAGE6" >
38 if ( keystate == "down" ) then
39 SW_OptKey("6");
40 end
41 </Binding>
42 <Binding name="SW_BIND_PAGE7" >
43 if ( keystate == "down" ) then
44 SW_OptKey("7");
45 end
46 </Binding>
47 <Binding name="SW_BIND_PAGE8" >
48 if ( keystate == "down" ) then
49 SW_OptKey("8");
50 end
51 </Binding>
52 <Binding name="SW_BIND_PAGE9" >
53 if ( keystate == "down" ) then
54 SW_OptKey("9");
55 end
56 </Binding>
57 <Binding name="SW_BIND_PAGE10" >
58 if ( keystate == "down" ) then
59 SW_OptKey("10");
60 end
61 </Binding>
62 </Bindings>