Skip to content

Instantly share code, notes, and snippets.

@scottharvey
Created August 24, 2010 03:44
Show Gist options
  • Save scottharvey/546907 to your computer and use it in GitHub Desktop.
Save scottharvey/546907 to your computer and use it in GitHub Desktop.
if (views.rooms == undefined) { views.rooms = {}; }
views.rooms.room = function(name) {
return "<div class='room' id='room_"+(Room.count() + 1)+"'>\
<p>"+name+"</p>\
</div>";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment