Commit 0a595ad99b22fd65315075151c63760e4ae415da

Authored by Valessio Brito
1 parent 716b658e

ordenar categoria by rodrigo

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
theme.js
... ... @@ -61,5 +61,16 @@ nav.addClass("fixar-user");
61 61 nav.removeClass("fixar-user");
62 62 }
63 63 });
  64 +
  65 +// ordenar pagina de categoria
  66 +parent = jQuery('#search-results');
  67 +articles = jQuery('#search-results .search-results-articles');
  68 +communities = jQuery('#search-results .search-results-communities');
  69 +people = jQuery('#search-results .search-results-people');
  70 +parent.prepend(people);
  71 +parent.prepend(communities);
  72 +parent.prepend(articles);
  73 +
64 74 });
65 75  
  76 +
... ...