mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
adds a text field and jquery to show/hide text field
This commit is contained in:
parent
4cd4a936d8
commit
0fd99d410e
|
@ -64,6 +64,14 @@
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-md-3" style="display:block; text-align:center;">
|
||||||
|
{{ Form::label('decline_msg', trans('admin/settings/general.decling_msg')) }}
|
||||||
|
</div>
|
||||||
|
<div class="col-md-8">
|
||||||
|
<textarea id="decline_msg" name="decline_msg" rows="4" cols="50"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
@if ($snipeSettings->require_accept_signature=='1')
|
@if ($snipeSettings->require_accept_signature=='1')
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
|
@ -130,6 +138,20 @@
|
||||||
$('#signature_output').val(signaturePad.toDataURL());
|
$('#signature_output').val(signaturePad.toDataURL());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$(document).ready(function(){
|
||||||
|
// Initially hide the div
|
||||||
|
$('#decline_msg').hide();
|
||||||
|
|
||||||
|
$('input[id="declined"]').change(function(){
|
||||||
|
|
||||||
|
if($(this).is(':checked')){
|
||||||
|
$('#decline_msg').show();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$('#decline_msg').hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@stop
|
@stop
|
Loading…
Reference in a new issue