Created
May 25, 2013 18:27
-
-
Save Pent/5650187 to your computer and use it in GitHub Desktop.
when new record is added to collection, do something (in this case: scroll the page)
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
| Meteor.subscribe('messages', function() { | |
| return Messages.find().observe({ | |
| added: function() { | |
| scrollToBottom(); | |
| } | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment