function responsive_preview_theme in Responsive Theme Preview 8
Same name and namespace in other branches
- 7 responsive_preview.module \responsive_preview_theme()
 
Implements hook_theme().
File
- ./
responsive_preview.module, line 39  - Provides a component that previews the a page in various device dimensions.
 
Code
function responsive_preview_theme() {
  $defaultVariables = drupal_common_theme();
  return [
    'item_list__responsive_preview' => $defaultVariables['item_list'],
  ];
}