Skip to content

Commit

Permalink
Improve layout
Browse files Browse the repository at this point in the history
  • Loading branch information
vidakovic committed Feb 6, 2015
1 parent 9faba22 commit e1c9a39
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions public/wakatime.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@
<div class="form-group">
<input class="form-control" id="project" name="project" ng-model="project" placeholder="Project">
</div>
<!--
<div class="form-group">
<input class="form-control" type="checkbox" ng-model="showLogo">
</div>
-->
<div class="form-group">
<div class="btn-group">
<button class="btn btn-success" ng-click="start()" ng-hide="running" type="button">Start</button>
Expand All @@ -57,9 +59,16 @@
</div>
<div class="form-group">
<table class="table table-condensed">
<tr ng-repeat="entry in queue">
<td>{{entry}}</td>
</tr>
<thead>
<tr>
<h4>Debug Events</h4>
</tr>
</thead>
<tbody>
<tr ng-repeat="entry in queue">
<td>{{entry}}</td>
</tr>
</tbody>
</table>
</div>
</form>
Expand Down Expand Up @@ -143,6 +152,8 @@
$rootScope.$broadcast('hangout.topic', evt);
});
Hangout.showLogo(true);
this.data.initialized = true;
},
start: function() {
Expand Down

0 comments on commit e1c9a39

Please sign in to comment.