Updated method name to new camelcase convention

This commit is contained in:
Avital Oliver
2012-04-20 14:25:05 -07:00
parent bac8c52e00
commit 10fd13ce46

View File

@@ -6,7 +6,7 @@
// connect to madewith and subscribe to my app's record
var server = Meteor.connect("http://madewith.meteor.com/sockjs");
var sub = server.subscribe("my_app", hostname);
var sub = server.subscribe("myApp", hostname);
// minimongo collection to hold my singleton app record.
var apps = new Meteor.Collection('apps', server);