MCPcopy Index your code
hub / github.com/pbakaus/scroller / runLoggingCallbacks

Function runLoggingCallbacks

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

Source from the content-addressed store, hash-verified

1031
1032// Supports deprecated method of completely overwriting logging callbacks
1033function runLoggingCallbacks(key, scope, args) {
1034 //debugger;
1035 var callbacks;
1036 if ( QUnit.hasOwnProperty(key) ) {
1037 QUnit[key].call(scope, args);
1038 } else {
1039 callbacks = config[key];
1040 for( var i = 0; i < callbacks.length; i++ ) {
1041 callbacks[i].call( scope, args );
1042 }
1043 }
1044}
1045
1046// Test for equality any JavaScript type.
1047// 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…