Skip to content
This repository has been archived by the owner on Jun 17, 2019. It is now read-only.

Commit

Permalink
Link warning list to document
Browse files Browse the repository at this point in the history
  • Loading branch information
trivedigaurav committed Jul 20, 2015
1 parent 96862cf commit dfaf3e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ <h5>Select Model</h5>
</div>
</div>
<div id="wordtree-about"
ng-show="wordTreeData.matches"
ng-show="wordTreeData.matches && tabs.wordTreeView"
ng-class="{'wordtree-about-overlay': wordTreeFullscreenButton}">
<button id="wordtree-fullscreen-button" type="button" class="btn btn-xs btn-default" btn-checkbox
ng-model="singleModel"
Expand Down Expand Up @@ -599,7 +599,7 @@ <h4>Training Results</h4>
<tbody>
<tr ng-repeat="warning in retrainData.message" class="bs-callout bs-callout-warning">
<td>{{$index+1}}.</td>
<td>{{warning.docId}}</td>
<td><a href="#" ng-click="updateGridId(warning.variable, warning.docId)">{{warning.docId}}</a></td>
<td><em>{{$root.config.variableMapping[warning.variable]}}</em></td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion app/js/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ angular.module('myApp.controllers', [])
$scope.modal.isCollapsed = true;
$scope.setSearchFilter(null);
setModelAndDataset($scope.modal.selectedModel, $scope.modal.selectedDataset);
$scope.loadWordTree($scope.active.wordTreeQuery);
$scope.tabs.wordTreeView = false;
}

$scope.resetDB = function(empty) {
Expand Down

0 comments on commit dfaf3e1

Please sign in to comment.