You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
945 B
29 lines
945 B
<a class="btn btn-success copy">{{'Full Visualization'|trans({})}}</a>
|
|
|
|
<div class="visualizacion wrappertest" style="display:none"><a class="btn btn-error cerrar">×</a>
|
|
</div>
|
|
|
|
<script>
|
|
$('a.copy').on('click', function(){
|
|
console.log('compiando');
|
|
$('textarea').each(function(){
|
|
// get the value
|
|
$(this).html($(this).val());
|
|
// check the value with the regular expression here.
|
|
// send alert if failed etc...
|
|
});
|
|
var cp = $('form.wizard').html();
|
|
var vis=$('div.visualizacion').html();
|
|
$('div.visualizacion').append( cp );
|
|
$('.visualizacion.wrappertest textarea').prop('disabled', true);
|
|
$('div.visualizacion').show();
|
|
$('a.cerrar').on('click', function(){
|
|
console.log('limpiando');
|
|
$('div.visualizacion').html('');
|
|
$('div.visualizacion').append('<a class="btn btn-error cerrar">×</a>');
|
|
$('div.visualizacion').hide();
|
|
});
|
|
});
|
|
|
|
|
|
</script>
|