| author | Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> |
| Fri, 09 Sep 2011 19:58:39 +0200 | |
| changeset 272 | fe2efe3600ea |
| parent 133 | 9578d3ddce17 |
| permissions | -rwxr-xr-x |
var Hook = { hooks: [], register: function ( name, callback ) { if( 'undefined' == typeof( Hook.hooks[name] ) ) Hook.hooks[name] = [] Hook.hooks[name].push( callback ) }, call: function ( name, arguments ) { if( 'undefined' != typeof( Hook.hooks[name] ) ) for( i = 0; i < Hook.hooks[name].length; ++i ) if( true != Hook.hooks[name][i]( arguments ) ) { break; } } }