* Display or hide the processing indicator * @param {object} settings dataTables settings object * @param {bool} show Show the processing indicator (true) or not (false) * @memberof DataTable#oApi
( settings, show )
| 3392 | * @memberof DataTable#oApi |
| 3393 | */ |
| 3394 | function _fnProcessingDisplay ( settings, show ) |
| 3395 | { |
| 3396 | if ( settings.oFeatures.bProcessing ) { |
| 3397 | $(settings.aanFeatures.r).css( 'display', show ? 'block' : 'none' ); |
| 3398 | } |
| 3399 | |
| 3400 | _fnCallbackFire( settings, null, 'processing', [settings, show] ); |
| 3401 | } |
| 3402 | |
| 3403 | /** |
| 3404 | * Add any control elements for the table - specifically scrolling |
no test coverage detected