(node)
| 30 | var RESIZE_DISABLED = false; |
| 31 | |
| 32 | function simulateClick(node) { |
| 33 | var oEvent; |
| 34 | if (document.createEvent) { |
| 35 | oEvent = document.createEvent('MouseEvents'); |
| 36 | oEvent.initMouseEvent('click', true, true, document.defaultView, |
| 37 | 0, 0, 0, 0, 0, false, false, false, false, 0, node); |
| 38 | node.dispatchEvent(oEvent); |
| 39 | } else { |
| 40 | node.click(); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | var documentViewportProperties = null; |
| 45 |