fix class field-username

This commit is contained in:
exane 2015-07-04 21:52:42 +02:00
parent b353293af5
commit 3fa900f22b
1 changed files with 1 additions and 1 deletions

View File

@ -918,7 +918,7 @@ let Lobby = Backbone.View.extend({
this.$el.find("#deckChoice option[value='" + val + "']").attr("selected", "selected")*/
localStorage["userName"] = this.app.user.get("name");
/*this.render();*/
this.$el.find(".name-input").val(this.app.user.get("name"));
this.$el.find(".field-username").val(this.app.user.get("name"));
},
changeName: function(e){
let name = $(e.target).val();