* Display or hide the processing indicator * @param {object} settings DataTables settings object * @param {bool} show Show the processing indicator (true) or not (false)
(settings, show)
| 4547 | * @param {bool} show Show the processing indicator (true) or not (false) |
| 4548 | */ |
| 4549 | function _fnProcessingDisplay(settings, show) { |
| 4550 | // Ignore cases when we are still redrawing |
| 4551 | if (settings.bDrawing && show === false) { |
| 4552 | return |
| 4553 | } |
| 4554 | |
| 4555 | _fnCallbackFire(settings, null, "processing", [settings, show]) |
| 4556 | } |
| 4557 | |
| 4558 | /** |
| 4559 | * Show the processing element if an action takes longer than a given time |
no test coverage detected