Changeset 11053 for branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Scripts/CollapsingSection.js
- Timestamp:
- 06/27/14 16:39:43 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Scripts/CollapsingSection.js
r11030 r11053 15 15 was impossible. Therefore this function is hardcoded as an HTML onclick event 16 16 for the dynamically created buttons of these sections */ 17 function collapseSection(caller) {17 function CollapseSection(caller) { 18 18 var jqCaller = $(caller); 19 19 if (jqCaller.html() == "-") { … … 29 29 /* Passed the interior div this fucntion is used to create an automatically collapsed 30 30 section */ 31 function collapsedByDefault(caller) {31 function CollapsedByDefault(caller) { 32 32 $(caller).parent().children("canvas, div, fieldset, label").css("display","none"); 33 33 } 34 34 35 35 /* Used when scrolling to a task by error, opens the container before task is scrolled to */ 36 function openOnError(caller) {36 function OpenOnError(caller) { 37 37 var jqCaller = $(caller); 38 38 jqCaller.parent().children("canvas, div, fieldset, label").fadeIn();
Note: See TracChangeset
for help on using the changeset viewer.