Guest User

Untitled

a guest
Jan 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function my_assets_element_info_alter(array &$types)
  2. {
  3. if (isset($types['table'])) {
  4. $types['table']['#attached']['library'][] = 'my_assets/fancy';
  5. }
  6. }
  7.  
  8. function my_assets_page_attachments(array &$attachments) {
  9. $attachments['#attached']['library'][] = 'my_assets/fancy';
  10. }
Add Comment
Please, Sign In to add comment