Last active
December 17, 2015 03:08
-
-
Save DavertMik/5540722 to your computer and use it in GitHub Desktop.
launch popup
This file contains 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 mails = new MailCollection(); | |
var user = new User(); | |
var mailsView = new MailCollectionView({collection: mails}); | |
var form = new MailFormView({}); | |
user.fetch({success: function() { | |
mails.fetch({success: function() { | |
mailsView.render(); | |
}}); | |
}}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment