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.
456 B
456 B
Drupal Code Snippets
{# my dubugger #}
Rob's var dump
{{ dump(_context) }}Moving blocks based on screen size using JS
jQuery(window).on('resize', function () { if (jQuery(window).width() <= 768) { console.log( "yippee!!!" ); jQuery('#my-block').appendTo('#mobile-region'); } else { jQuery('#my-block').appendTo('#desktop-region'); } });