Advertisement
Hardrockdesign

Javascripts Fully

Aug 14th, 2015
645
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. ----------------- PERFIL PERSONAL. Posición: en todas las páginas ---------------
  2.  
  3. $(function(){
  4. $("#tabs li").each(function(){
  5. $(this).html($(this).html()
  6. .replace("Mensajes de los visitantes", "Comentarios"));
  7. });
  8. });
  9.  
  10. ----------------- DESCONECTARSE. Posición: en todas las páginas ---------------
  11.  
  12. jQuery(document).ready(function(){
  13.  
  14. jQuery('a.mainmenu[href^="/login?logout=1"]').html('Desconectarse');
  15. jQuery('a.mainmenu[href^="/groups"]').html('Grupos');
  16.  
  17. });
  18.  
  19. ----------------- CAJA PERFIL. Posición: en los temas ---------------
  20.  
  21. $(function(){
  22. $("div.info").each(function(){
  23. $(this).html($(this).html()
  24. .replace(":", " "));
  25. });
  26. });
  27.  
  28. ----------------- ICONO. Posición: en los temas ---------------
  29.  
  30. $(function() {
  31. for (var a = document.getElementsByTagName('SPAN'), i = 0, j = a.length, label; i<j; i++) {
  32.  
  33. if (/profileField/.test(a[i].className)) {
  34. label = a[i].innerHTML.replace(/<.*?>/g,'').replace(/:.*$/,'').replace(/^\s+|\s+$/g,'');
  35.  
  36. switch (label) {
  37.  
  38. case 'Icono personal' :
  39. a[i].className += ' field-icono';
  40. break;
  41.  
  42. }
  43.  
  44. }
  45.  
  46. }
  47. });
  48.  
  49. ----------------- CAMBIOS NOMBRE. Posición: en el índice ---------------
  50.  
  51. $(function(){
  52. $("div.estadis").each(function(){
  53. $(this).html($(this).html()
  54. .replace("Nuestros miembros han publicado", "Hemos publicado")
  55. .replace("La mayor cantidad de usuarios", "El récord")
  56. .replace("El último usuario registrado es", "Damos la bienvenida a"));
  57. });
  58. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement