You are here

function views_sexy_throbber_css3pie in Views Sexy Throbber 7.2

Implements hook_css3pie().

File

./views_sexy_throbber.module, line 39
Views Sexy Throbber main module file.

Code

function views_sexy_throbber_css3pie() {

  // Add support for the "CSS3PIE" module to deliver IE comapability.
  return array(
    'views_sexy_throbber' => array(
      'div.view div.ajax-progress',
      'div.view div.throbber',
      'div.ajax-progress',
      'div.throbber',
    ),
  );
}