Re-indent.
authorMike Taylor <mike@indexdata.com>
Wed, 7 May 2014 12:19:31 +0000 (13:19 +0100)
committerMike Taylor <mike@indexdata.com>
Wed, 7 May 2014 12:19:31 +0000 (13:19 +0100)
src/mkws-widget-authname.js

index a517e80..02cce99 100644 (file)
@@ -1,7 +1,7 @@
 mkws.registerWidgetType('Authname', function() {
-    var that = this;
+  var that = this;
 
-    this.team.queue("authenticated").subscribe(function(authName) {
-       $(that.node).html(authName);
-    });
+  this.team.queue("authenticated").subscribe(function(authName) {
+    $(that.node).html(authName);
+  });
 });