This module adds mobile behaviors to the search facets in the Island Archives olives* themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php |
|
|
|
use Drupal\Core\Render\AttachmentsTrait; |
|
|
|
/** |
|
* Implements hook_page_attachments(). |
|
*/ |
|
function mobile_facets_page_attachments(array &$attachments) { |
|
$attachments['#attached']['library'][] = 'mobile_facets/mobile_facets'; |
|
}
|
|
|