Revert to 12099f341d4d836116b636796a8e4af3306d3828 (undoing last
[mkws-moved-to-github.git] / src / mkws-widget-authname.js
1 mkws.registerWidgetType('auth-name', function() {
2   var that = this;
3
4   this.team.queue("authenticated").subscribe(function(authName) {
5     that.node.html(authName);
6   });
7 });