Advertisement
Guest User

kode

a guest
May 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div class="card">
  2.  
  3.   <div class="item item-input-inset">
  4.     <label class="item-input-wrapper" ng-init="barcode_input=''">
  5.       <input ng-model="barcode_input" type="text" placeholder="Aproxime-se">
  6.     </label>
  7.     <a class="button button-small" barcode-scanner barcode-text="barcode_input">Ler QRcode</a>
  8.   </div>           
  9.  
  10.   <div class="item item-body" ng-if="barcode_input !='' ">  
  11.    <button class="button button-block button-positive" ng-click="redirect(barcode_input)">Go</button>
  12.   </div>
  13.  
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement