Ajax throbber
Categories
Component ID
2501645
Component name
Ajax throbber
Component type
module
Maintenance status
Development status
Component security advisory coverage
covered
Downloads
4504
Component created
Component changed
Component body
Displays an Ajax throbber in an overlay on every ajax request.
For example on views, facetapi, custom javascript, ...
So user interaction will be blocked until the request is completed.
So this is not tied to one component like views or webforms.
But usable for everything.
The animation of the throbber + overlay is all CSS
Configuration
Choice between:
- circle
- three_dots
- square
- fading_circle
RGBA colors
Overlay color
variable_set('ajax_throbber_bg_color', '255,255,255, .8');
Item color (Throbber)
variable_set('ajax_throbber_item_color', '0, 174, 239, .8');
How to ?
- Via the settings page <= Recommended
- Via command line drush (drush vset 'ajax_...' '0,0,222, 0.8'
- Via hooks or functions in Drupal: variable_set('...')
- via settings.php file :
- $conf['ajax_throbber_selection'] = 'three_dots';
- $conf['ajax_throbber_bg_color'] = '0,0,0, 0.75';
- $conf['ajax_throbber_item_color'] = '255,255,255, 0.8';
Latest DEV
You can configure this module on : "admin/config/user-interface/ajax_throbber"
This will allow you to exclude paths.
