Skip to content

Adding Informational description above subgoal and action tree #178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion templates/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@
</div>
<hr>
<div id="sideBySide" style="overflow-y:auto; overflow-x:hidden;">
<nav id="subgoalList" style="height:80%; width:10%; float:left"></nav>
<nav id="subgoalList" style="height:80%; width:10%; float:left">
<div id="treeInfo" style="margin:5px;" hidden>
<label id="infoText"> Click on subgoals and actions in the tree below to view or edit them</span>
</div>
</nav>
<div id="containeryo" style="height:80%; width:50%; margin:5px; float:left; overflow-y: auto; overflow-x:hidden;" >
<div id="setup" class="instruction" style="margin-bottom:5px;">
<!--span class="preview"> Before you get started with the GenderMag walkthrough... </span-->
Expand Down
1 change: 1 addition & 0 deletions ui/uiController.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ function addToSandwich(type, item){
// add the new subgoal to the sidebar
if (!foundIt) {
sidebarBody().find("#subgoalList").append(sideSubgoal);
sidebarBody().find("#treeInfo").show();
}

}
Expand Down