Skip to content

Commit

Permalink
Resolução da issue #612
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielPintoSouza committed Jun 21, 2024
1 parent 0bf58b0 commit c4fbc7d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions html/saude/historico_paciente.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@
<!-- JavaScript Functions -->
<script src="../../Functions/enviar_dados.js"></script>
<script src="../../Functions/mascara.js"></script>
<script src="../../Functions/onlyNumbers.js"></script>
<link rel="icon" href="<?php display_campo("Logo", 'file'); ?>" type="image/x-icon" id="logo-icon">
<script>
$(function() {
Expand Down Expand Up @@ -549,14 +550,14 @@ function removerSinVit(sinal, linha) {
<div class="form-group">
<label class="col-md-3 control-label" for="profileCompany">Frequência cardíaca (em bpm):</label>
<div class="col-md-6">
<input type="number" maxlength="3" class="form-control" name="freq_card" id="freq_card" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength); if(this.value<0) this.value = this.value*-1;">
<input type="number" maxlength="3" class="form-control" name="freq_card" id="freq_card" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength); if(this.value<0) this.value = this.value*-1;" onkeypress="return Onlynumbers(event)">
</div>
</div>

<div class="form-group">
<label class="col-md-3 control-label" for="profileCompany">Frequência respiratória (em rpm):</label>
<div class="col-md-6">
<input type="number" maxlength="3" class="form-control" name="freq_resp" id="freq_resp" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength); if(this.value<0) this.value = this.value*-1;">
<input type="number" maxlength="3" class="form-control" name="freq_resp" id="freq_resp" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength); if(this.value<0) this.value = this.value*-1;" onkeypress="return Onlynumbers(event)">
</div>
</div>

Expand Down

0 comments on commit c4fbc7d

Please sign in to comment.