Commit 08007ecda1236dbdabebbfbd03d0f042ce243330

Authored by Jose Pinto
1 parent ddedbbb5cd
Exists in master and in 1 other branch develop

teclado virtual en modal prompt

Showing 1 changed file with 6 additions and 2 deletions   Show diff stats
src/views/modal-prompt.html
... ... @@ -9,7 +9,9 @@
9 9 ng-show="!options.textarea"
10 10 maxlength="{{options.maxlength}}"
11 11 ng-readonly="options.readonly"
12   - ng-keypress="aceptar($event.keyCode)">
  12 + ng-keypress="aceptar($event.keyCode)"
  13 + teclado-virtual
  14 + >
13 15  
14 16 <textarea
15 17 rows="5"
... ... @@ -18,7 +20,9 @@
18 20 ng-show="options.textarea"
19 21 maxlength="{{options.maxlength}}"
20 22 ng-readonly="options.readonly"
21   - ng-keypress="aceptar($event.keyCode)"></textarea>
  23 + ng-keypress="aceptar($event.keyCode)"
  24 + teclado-virtual
  25 + ></textarea>
22 26 </div>
23 27 <div class="modal-footer">
24 28 <button class="btn btn-primary" ng-click="aceptar(13)" foca-focus="true">Aceptar</button>