MCPcopy
hub / github.com/jquery-backstretch/jquery-backstretch / runLoggingCallbacks

Function runLoggingCallbacks

libs/qunit/qunit.js:1071–1082  ·  view source on GitHub ↗
(key, scope, args)

Source from the content-addressed store, hash-verified

1069
1070// Supports deprecated method of completely overwriting logging callbacks
1071function runLoggingCallbacks(key, scope, args) {
1072 //debugger;
1073 var callbacks;
1074 if ( QUnit.hasOwnProperty(key) ) {
1075 QUnit[key].call(scope, args);
1076 } else {
1077 callbacks = config[key];
1078 for( var i = 0; i < callbacks.length; i++ ) {
1079 callbacks[i].call( scope, args );
1080 }
1081 }
1082}
1083
1084// Test for equality any JavaScript type.
1085// 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