initial commit of poker game

This commit is contained in:
Edward Yang
2015-03-20 14:21:44 -07:00
commit cd7f17778f
147 changed files with 10833 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
define(["jquery", "backbone"], function($, Backbone){
var View = Backbone.Model.extend({
urlRoot : '/rest/messages'
});
return View;
});

View File

@@ -0,0 +1,6 @@
define(["jquery", "backbone"], function($, Backbone){
var View = Backbone.Model.extend({
urlRoot : '/rest/users'
});
return View;
});