Created
December 7, 2009 20:39
-
-
Save rmanalan/251092 to your computer and use it in GitHub Desktop.
Failed test for Pure2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var bindData = { | |
| 'messages' : [ | |
| { | |
| 'id' : 1, | |
| 'avatar' : 'some avatar url', | |
| 'name' : 'some name', | |
| 'url' : 'some url', | |
| 'activity' : 'text', | |
| 'detail' : 'detailed text', | |
| 'reltime' : 'some date' | |
| }, | |
| { | |
| 'id' : 2, | |
| 'avatar' : 'some avatar url2', | |
| 'name' : 'some name2', | |
| 'url' : 'some url2', | |
| 'activity' : 'text2', | |
| 'detail' : 'detailed text2', | |
| 'reltime' : 'some date2' | |
| } | |
| ] | |
| }; | |
| $('li.messages:last').autoRender(bindData); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ol class="results" class="span-16"> | |
| <li class="messages clearfix id@id"> | |
| <div class="span-avatar column first"> | |
| <img class="avatar@src" src="images/loader.gif"/> | |
| </div> | |
| <div class="span-14 last"> | |
| <span class="activity"></span> | |
| <div class="detail">Loading...</div> | |
| <div class="reltime"></div> | |
| </div> | |
| </li> | |
| </ol> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment