function acquia_lift_modernizr_info in Acquia Lift Connector 7.2
Same name and namespace in other branches
- 7 acquia_lift.module \acquia_lift_modernizr_info()
Implements hook_modernizr_info().
File
- ./
acquia_lift.module, line 2436 - acquia_lift.module Provides Acquia Lift-specific personalization functionality.
Code
function acquia_lift_modernizr_info() {
$tests = array();
// Feature tests
$tests[] = 'inputtypes';
$tests[] = 'svg';
$tests[] = 'touch';
$tests[] = 'elem_details';
// Extensibility
$tests[] = 'addtest';
$tests[] = 'teststyles';
$tests[] = 'prefixes';
return $tests;
}