Created
April 10, 2018 03:00
-
-
Save haingdc/c3771ca59f46c6159ddf2a59194b3ee7 to your computer and use it in GitHub Desktop.
Thao tác với DOM thông qua TDD
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
// photo-lister.js | |
PhotoLister = { | |
photoToListItem: function() { | |
return ( | |
'<li><figure><img src="http://loremflickr.com/960/593" alt=""/>' + | |
"<figcaption>This is a test</figcaption></figure></li>" | |
); | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment