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.

22 lines
359 B

  1. semantic.grid = {};
  2. // ready event
  3. semantic.grid.ready = function() {
  4. $('.animation.checkbox')
  5. .checkbox({
  6. onChecked: function() {
  7. $('body').addClass('animated');
  8. },
  9. onUnchecked: function() {
  10. $('body').removeClass('animated');
  11. }
  12. })
  13. ;
  14. };
  15. // attach ready event
  16. $(document)
  17. .ready(semantic.grid.ready)
  18. ;