error.js 606 B

1234567891011121314151617181920212223242526
  1. ready(function(){
  2. var divs = dom.get('div.error,div.error>div.collapsable>div');
  3. dom.get('div.error>div.collapsable>div')
  4. .each(function(i){
  5. if(i%2 == 1){
  6. this.classList.add('odd');
  7. }
  8. });
  9. divs.on('click',function(e){
  10. var self = this;
  11. dom.get(self)
  12. .get('div.collapsable, span.collapse-arrow')
  13. .each(function(){
  14. if(self === this.parentNode){
  15. if(this.classList.indexOf('collapsed') == -1){
  16. this.classList.add('collapsed');
  17. }else{
  18. this.classList.remove('collapsed');
  19. }
  20. }
  21. });
  22. e.stopPropagation();
  23. e.preventDefault();
  24. return false;
  25. });
  26. });