Changeset 11059 for branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/App_Code/ExceptionHelper.cshtml
- Timestamp:
- 06/30/14 16:35:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/App_Code/ExceptionHelper.cshtml
r11053 r11059 129 129 for(i = 0; i < result.length; i++) { 130 130 $("#" + "@(destinationTag)").append( 131 '<section class="chartContainer">' +131 '<section id="' + result[i][0] + 'Container" class="chartContainer">' + 132 132 '<h1 class="title" id="@(destinationTag)' + result[i][0] + '">Task ' + result[i][0] + '</h1>' + 133 133 '<button class="collapse" onclick="CollapseSection(this)">+</button>' + … … 149 149 //Opens a sub-container with slave information 150 150 function ShowSlaveInfo(caller) { 151 @*@ChartHelper.SlaveInfoChart("",url,limit,startDate,endDate,"null","NotApplicable","null","$(caller).html()")*@ 151 if($(caller).parent().parent().children(".chartContainer").length == 0) { 152 @ChartHelper.SlaveInfoChart("caller.parentNode.parentNode.id",url,limit,true,startDate,endDate,null,null,null,"$(caller).html()") 153 } 154 else { 155 $(caller).parent().parent().children(".chartContainer").remove(); 156 } 152 157 } 153 158 </text>
Note: See TracChangeset
for help on using the changeset viewer.