Skip to content

Commit 37bde31

Browse files
committed
.
1 parent 1afcce0 commit 37bde31

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ module openflow {
360360
} catch (error) {
361361
console.log(error);
362362
}
363-
363+
console.debug("signing in with username/password");
364364
var a: any = await this.WebSocketClient.Send(msg);
365365
var result: SigninMessage = a;
366366
if (result.user == null) { return; }

OpenFlow/src/public/WebSocketClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ module openflow {
136136
} catch (error) {
137137
console.log(error);
138138
}
139-
console.debug("signing in");
139+
console.debug("signing in with token");
140140
var msg: Message = new Message(); msg.command = "signin"; msg.data = JSON.stringify(q);
141141
var a: any = await this.Send(msg);
142142
var result: SigninMessage = a;

OpenFlow/src/public/jslog.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ <h1 translate lib="web">entities</h1>
55
<table id="table1" class="table table-striped" when-scrolled="ctrl.more()" style="width: 100%;">
66
<thead class="thead-dark">
77
<tr>
8+
<th ng-click="ctrl.ToggleOrder('_type')"><b translate lib="web">type</b></th>
89
<th ng-click="ctrl.ToggleOrder('_createdby')"><b translate lib="web">createdby</b></th>
910
<th ng-click="ctrl.ToggleOrder('_created')"><b translate lib="web">created</b></th>
1011
<th></th>
1112
</tr>
1213
</thead>
1314
<tbody>
1415
<tr ng-repeat="model in ctrl.models">
16+
<td>{{model._type}}</td>
1517
<td>{{model._createdby}}</td>
1618
<td>
1719
<timesince ng-model="model._created" />

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.129
1+
0.0.130

0 commit comments

Comments
 (0)