Skip to content

Instantly share code, notes, and snippets.

@udnisap
Last active August 29, 2015 13:59

Revisions

  1. udnisap revised this gist Apr 16, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions PageObject
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,9 @@
    var codeTemplate = '\

    \
    <ul class="people_list"> \
    {{#each people}} \
    <li>{{this}}</li> \
    {{/each}} \
    </ul> \

    \
    ';
  2. udnisap revised this gist Apr 16, 2014. 1 changed file with 9 additions and 5 deletions.
    14 changes: 9 additions & 5 deletions PageObject
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,9 @@
    <ul class="people_list">
    {{#each people}}
    <li>{{this}}</li>
    {{/each}}
    </ul>
    var codeTemplate = '\

    <ul class="people_list"> \
    {{#each people}} \
    <li>{{this}}</li> \
    {{/each}} \
    </ul> \

    ';
  3. udnisap created this gist Apr 16, 2014.
    5 changes: 5 additions & 0 deletions PageObject
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    <ul class="people_list">
    {{#each people}}
    <li>{{this}}</li>
    {{/each}}
    </ul>