Code

Added global variable
[gosa.git] / gosa-core / html / include / events.js
1 window.onload           = OnLoad;
2 window.onresize         = OnResize;
3 window.onkeypress       = OnKeyPress;
5 function OnKeyPress()
6 {
7         keyPress();
8 }
10 function OnLoad()
11 {
12         adjust();
13         if(document['loadHandler']) {
14                loadHandler();
15         }
16 }
18 function OnResize()
19 {
20         adjust();
21         if(document['resizeHandler']) {
22           resizeHandler();
23         }
24 }