Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vidakovic committed Feb 6, 2015
1 parent e75180b commit 3bbd4a7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
15 changes: 12 additions & 3 deletions gadget/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,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 @@ -20,9 +22,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
5 changes: 3 additions & 2 deletions gadget/scripts/wakatime.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
gapi.hangout.onair.onBroadcastingChanged.add(
function(evt) {
$log.info(evt);
Hangout.showLogo(true);
Hangout.start();
$rootScope.$broadcast('hangout.broadcasting', evt);
});
Expand Down Expand Up @@ -108,7 +109,7 @@
'reference': gapi.hangout.av.effects.ScaleReference.WIDTH
}
});
overlay.setPosition(-0.4, -0.4);
overlay.setPosition(-0.4, -0.1);
overlay.setVisible(true);

if(overlays['time']) {
Expand All @@ -126,7 +127,7 @@
'reference': gapi.hangout.av.effects.ScaleReference.WIDTH
}
});
overlays['logo'].setPosition(-0.4, -0.2);
overlays['logo'].setPosition(-0.4, -0.3);
}
overlays['logo'].setVisible(show);
},
Expand Down

0 comments on commit 3bbd4a7

Please sign in to comment.