function superfish_modernizr_info in Superfish 7
Implements hook_modernizr_info().
File
- ./
superfish.module, line 2504 - Enables the use of jQuery Superfish plugin for Drupal menus.
Code
function superfish_modernizr_info() {
$tests = array();
// Required by sfsmallscreen.js
$tests[] = 'mq';
return $tests;
}