Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
jan
/
mustache.js
réplica de
https://github.com/janl/mustache.js
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
46
Wiki
Actividad
Explorar el Código
enable partials in dojo & jQuery packages
tags/0.2.1
Jan Lehnardt
hace 16 años
padre
dd508d0385
commit
66db0f390e
Se han
modificado 2 ficheros
con
4 adiciones
y
4 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+2
-2
mustache-dojo/mustache.js.tpl.post
+2
-2
mustache-jquery/jquery.mustache.js.tpl.post
+ 2
- 2
mustache-dojo/mustache.js.tpl.post
Ver fichero
@@ -1,5 +1,5 @@
d.mustache = function(template, view) {
return Mustache.to_html(template, view);
d.mustache = function(template, view
, partials
) {
return Mustache.to_html(template, view
, partials
);
};
})(dojo);
+ 2
- 2
mustache-jquery/jquery.mustache.js.tpl.post
Ver fichero
@@ -1,6 +1,6 @@
$.mustache = function(template, view) {
return Mustache.to_html(template, view);
$.mustache = function(template, view
, partials
) {
return Mustache.to_html(template, view
, partials
);
};
})(jQuery);
Escribir
Vista previa
Cargando…
Cancelar
Guardar