The markPageLoadComplete() method sets the page load completion status.
results = markPageLoadComplete( self , **args )
Undefined
pushContextToChildren: function(explicitContext) {
var readiness = this.isReadyForContextPush()
if (readiness == Splunk.Module.CANCEL) {
if (!this.isPageLoadComplete()) {
var propagateLoadCompleteFlag = function(module) {
module.markPageLoadComplete();
module.withEachChild(function(child) {
propagateLoadCompleteFlag(child);
});
};
propagateLoadCompleteFlag(this);
}
return;
}
},