Revert "Towards MKWS-294 (Change names of MKWS classes to be case-insensitive)"
[mkws-moved-to-github.git] / src / mkws-widget-authname.js
1 mkws.registerWidgetType('Authname', function() {
2   var that = this;
3
4   this.team.queue("authenticated").subscribe(function(authName) {
5     that.node.html(authName);
6   });
7 });