adaptivetheme-8.x-3.x-dev/at_core/scripts/at.appearance.js
at_core/scripts/at.appearance.js
/** * @file * Appearance settings. */ (function ($, Drupal) { Drupal.behaviors.atCoreLayoutPreview = { attach: function () { $('#edit-layout-select select.row-layout-select').change(function(){ $('#' + $(this).attr('id')).parent().next().children().removeClass().addClass(this.value); }); } }; }(jQuery, Drupal));