You are here

function views_field_tooltip_init in Views Field Tooltip 7

Implements hook_init().

File

./views_field_tooltip.module, line 817
Shows tooltips on Views fields and labels.

Code

function views_field_tooltip_init() {

  // TODO This should be in a separate sub-module or hook.
  if (!empty($_GET['ajax']) && module_exists('admin_menu')) {
    admin_menu_suppress();
  }
}