Commit b57cc7f679b013c2dde6f1b270fb84111c5de3d8

Authored by Daniela Feitosa
2 parents f2b98385 21c434dc

Merge commit 'refs/merge-requests/104' of git://gitorious.org/noosfero/noosfero …

…into merge-requests/104
Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
public/javascripts/catalog.js
1 1 (function($) {
2 2  
3 3 $('#product-list .product .expand-box').live('click', function () {
  4 + $('.expand-box').each(function(index, element){ this.clicked = false; click(this); });
4 5 this.clicked = !this.clicked;
5 6 toggle_expandbox(this);
6 7 $.each($(this).siblings('.expand-box'), function(index, value) { value.clicked = false; toggle_expandbox(value); });
... ...