alpha-debug.js 500 B

12345678910111213141516171819
  1. /**
  2. * Attaches the debugging behavior.
  3. */
  4. (function($) {
  5. Drupal.behaviors.alphaDebug = {
  6. attach: function (context) {
  7. $('body', context).once('alpha-debug', function () {
  8. $('.alpha-grid-toggle').click(function() {
  9. $('body').toggleClass('alpha-grid-debug');
  10. return false;
  11. });
  12. $('.alpha-block-toggle').click(function() {
  13. $('body').toggleClass('alpha-region-debug');
  14. return false;
  15. });
  16. });
  17. }
  18. };
  19. })(jQuery);