(destination, source)
| 50 | } |
| 51 | |
| 52 | function extend(destination, source) { |
| 53 | for (var property in source) |
| 54 | destination[property] = source[property]; |
| 55 | return destination; |
| 56 | } |
| 57 | |
| 58 | var eventMatchers = { |
| 59 | 'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/, |