MCPcopy Index your code
hub / github.com/dataarts/dat.gui / runLoggingCallbacks

Function runLoggingCallbacks

tests/qunit.js:1035–1046  ·  view source on GitHub ↗
(key, scope, args)

Source from the content-addressed store, hash-verified

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