Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <p>
  2. {{#if customer.firstName}}
  3. Hello, {{customer.firstName}}
  4. {{else}}
  5. Hello,
  6. {{/if}}
  7. </p>
  8.  
  9. <p>
  10. <div id='uniq id' text='{{#if customer.firstName}}'>
  11. Hello, customer.firstName
  12. </div>
  13. <div id='uniq id' text='{{else}}' hiddenState='on'>
  14. Hello,
  15. </div>
  16. </p>
  17.  
  18. <p>
  19. <table>
  20. <tr>
  21. {{#if customer.firstName}}
  22. <td>
  23. blah blah
  24. </td>
  25. </tr>
  26. </table>
  27. </p>
  28.  
  29. <p>
  30. <div id='uniq id' text='{{#if customer.firstName}}'>
  31. Hello, customer.firstName
  32. </div>
  33. <table>
  34. <tr>
  35. <td>
  36. blah blah
  37. </td>
  38. </tr>
  39. </table>
  40. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement