( key, scope, args )
| 1328 | |
| 1329 | // Supports deprecated method of completely overwriting logging callbacks |
| 1330 | function runLoggingCallbacks( key, scope, args ) { |
| 1331 | //debugger; |
| 1332 | var i, callbacks; |
| 1333 | if ( QUnit.hasOwnProperty( key ) ) { |
| 1334 | QUnit[ key ].call(scope, args ); |
| 1335 | } else { |
| 1336 | callbacks = config[ key ]; |
| 1337 | for ( i = 0; i < callbacks.length; i++ ) { |
| 1338 | callbacks[ i ].call( scope, args ); |
| 1339 | } |
| 1340 | } |
| 1341 | } |
| 1342 | |
| 1343 | // Test for equality any JavaScript type. |
| 1344 | // Author: Philippe Rathé <prathe@gmail.com> |