Skip to content

Commit

Permalink
#22 expand the indicators table by default
Browse files Browse the repository at this point in the history
  • Loading branch information
p-a-s-c-a-l committed May 27, 2020
1 parent 6a13920 commit 730cd71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ angular.module(
// inside the onConnect() method, otherwise the event is not recieved (race condition?)
// strangley, the onConnect callback is called twice. See comment in nodeConncetor.js
parent.receive(function (studyInfo) {
//console.log('parent.receive:' + data);
console.log('parent.receive:' + studyInfo);
onSeamlessEvent(studyInfo);
});

Expand Down
2 changes: 1 addition & 1 deletion app/templates/drupalContextProviderTemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="panel panel-default">
<div class="panel-heading" role="tab" >
<h4 class="panel-title">
<a ng-init="indicatorFileCollapsed = true"
<a ng-init="indicatorFileCollapsed = false"
ng-click="indicatorFileCollapsed = !indicatorFileCollapsed">
<i ng-if="!indicatorFileCollapsed" class="glyphicon glyphicon-chevron-up"></i>
<i ng-if="indicatorFileCollapsed" class="glyphicon glyphicon-chevron-down"></i>
Expand Down

0 comments on commit 730cd71

Please sign in to comment.