Created
August 20, 2013 00:43
-
-
Save anthonyshort/6275858 to your computer and use it in GitHub Desktop.
View stuff
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 View = require('view'); | |
| var template = require('./template.html'); | |
| var view = new View({ | |
| template: template | |
| }); |
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 view = require('view'); | |
| var template = require('./template.html'); | |
| var View = view(template); | |
| var item = new View(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment