MCPcopy
hub / github.com/fabien-d/alertify.js / runLoggingCallbacks

Function runLoggingCallbacks

test/qunit/qunit.js:1330–1341  ·  view source on GitHub ↗
( key, scope, args )

Source from the content-addressed store, hash-verified

1328
1329// Supports deprecated method of completely overwriting logging callbacks
1330function 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>

Callers 2

qunit.jsFile · 0.85
doneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…