You are here

function navbar_modernizr_info in Navbar 7

Implements hook_modernizr_info().

File

./navbar.module, line 1198
Administration navbar for quick access to top level administration items.

Code

function navbar_modernizr_info() {
  $tests = array();

  // Feature tests
  $tests[] = 'inputtypes';
  $tests[] = 'svg';
  $tests[] = 'touch';
  $tests[] = 'elem_details';

  // Extensibility
  $tests[] = 'addtest';
  $tests[] = 'teststyles';
  $tests[] = 'prefixes';
  return $tests;
}