Skip to content
Snippets Groups Projects
Commit d753e94b authored by Jaden Diefenbaugh's avatar Jaden Diefenbaugh
Browse files

wow accidentally fixed scroll via clicking wrong SO link, #18

parent 988d63ba
No related branches found
No related tags found
1 merge request!223Reports overhaul
......@@ -115,7 +115,7 @@ angular.module('reportApp')
</button>
<ul class='dropdown-menu' ng-repeat='(expName, plots) in plottables' ng-if='expName === group.experiments[0]'>
<li ng-repeat='plot in plots'>
<a href='#' ng-click='addNewPlot(plot)'>{{ plot.label }} <i>({{ plot.type }})</i></a>
<a ng-click='addNewPlot(plot)'>{{ plot.label }} <i>({{ plot.type }})</i></a>
</li>
</ul>
</div>
......
......@@ -82,7 +82,7 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
<li
ng-repeat='exp in expsNotInGroup()'
ng-click='group.addExperiment(exp, getAnalyzerFromExpName(exp))'>
<a href="#">{{ exp }}</a>
<a>{{ exp }}</a>
</li>
</ul>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment