Guest User

Untitled

a guest
Jan 7th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. HTML:
  2.  
  3. {{#each item in items}}
  4. <tr>
  5. <td>{{driver.bearing}}</td>
  6. <td>{{input type="text" class="form-control" value=item.one}}</td>
  7. <td>{{input type="text" class="form-control" value=item.two}}</td>
  8. <td>{{input type="text" class="form-control" value=item.three}}</td>
  9. </tr>
  10. {{/each}}
  11.  
  12. JS:
  13.  
  14. generateRandomId: function(){
  15. var randomId = "";
  16. var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  17.  
  18. for(var i=0; i < 6; i++){
  19. randomId += possible.charAt(Math.floor(Math.random() * possible.length));
  20. }
  21. return randomId;
  22. },
Add Comment
Please, Sign In to add comment