Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/05/2012, 15:45
txemaarbulo
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Validar W3C "there is no attribute"

Cambiamos a rel en mis <a href llamadas y modificamos el archivo jquery.reveal.js
(Ventanas modales con jQuery)

Textual del ingles:
/*---------------------------
Listener for data-reveal-id attributes
----------------------------*/
// @CHANGED - Made it so that it accepted the rel attribute instead of the data-reveal-id
$('a[rel]').live('click', function(e) {
e.preventDefault();
var modalLocation = $(this).attr('rel');
$('#'+modalLocation).reveal($(this).data());
});

Puedes leer la cuestión en[URL="https://github.com/zurb/reveal/issues/11"] https://github.com/zurb/reveal/issues/11[/URL]