Your IP : 172.28.240.42


Current Path : /var/www/html/clients/td-teplouchet.ru/old/sites/all/modules/panels/js/
Upload File :
Current File : /var/www/html/clients/td-teplouchet.ru/old/sites/all/modules/panels/js/layout.js

/**
 * @file layout.js
 *
 * Contains javascript to make layout modification a little nicer.
 */

(function ($) {
  Drupal.Panels.Layout = {};
  Drupal.Panels.Layout.autoAttach = function() {
    $('div.form-item div.layout-icon').click(function() {
      $widget = $('input', $(this).parent());
      // Toggle if a checkbox, turn on if a radio.
      $widget.attr('checked', !$widget.attr('checked') || $widget.is('input[type=radio]'));
    });
  };

  $(Drupal.Panels.Layout.autoAttach);
})(jQuery);