Changeset 23 in flair-dev for trunk/doc/Flair/navtree.js


Ignore:
Timestamp:
06/22/16 11:08:05 (8 years ago)
Author:
Sanahuja Guillaume
Message:

m

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/Flair/navtree.js

    r16 r23  
    1 var NAVTREE =
    2 [
    3   [ "Flair", "index.html", [
    4     [ "Namespaces", null, [
    5       [ "Namespace List", "namespaces.html", "namespaces" ],
    6       [ "Namespace Members", "namespacemembers.html", [
    7         [ "All", "namespacemembers.html", null ],
    8         [ "Functions", "namespacemembers_func.html", null ],
    9         [ "Typedefs", "namespacemembers_type.html", null ]
    10       ] ]
    11     ] ],
    12     [ "Classes", null, [
    13       [ "Class List", "annotated.html", "annotated" ],
    14       [ "Class Index", "classes.html", null ],
    15       [ "Class Hierarchy", "hierarchy.html", "hierarchy" ],
    16       [ "Class Members", "functions.html", [
    17         [ "All", "functions.html", "functions_dup" ],
    18         [ "Functions", "functions_func.html", "functions_func" ],
    19         [ "Variables", "functions_vars.html", null ],
    20         [ "Enumerations", "functions_enum.html", null ],
    21         [ "Enumerator", "functions_eval.html", null ]
    22       ] ]
    23     ] ],
    24     [ "Files", null, [
    25       [ "File List", "files.html", "files" ]
    26     ] ]
    27   ] ]
    28 ];
    29 
    30 var NAVTREEINDEX =
    31 [
    32 "_afro_bldc_8h.html",
    33 "_watchdog_8h.html",
    34 "classflair_1_1core_1_1_object.html#a360c112cc3017a5152ebf6e84d2efa70",
    35 "classflair_1_1core_1_1cvmatrix__descriptor.html#a1abe66646468d9bf743d21adc028eaf3",
    36 "classflair_1_1gui_1_1_map.html",
    37 "classflair_1_1sensor_1_1_gps.html#a7d75b9b8ffeafd9d5062806e598398bd",
    38 "classflair_1_1simulator_1_1_discrete_time_variable.html#a4f0cff7a8464801240d20f907e55d95e"
    39 ];
    40 
    41 var SYNCONMSG = 'click to disable panel synchronisation';
    42 var SYNCOFFMSG = 'click to enable panel synchronisation';
    431var navTreeSubIndices = new Array();
    442
     
    148106      if (node.expanded) {
    149107        $(node.getChildrenUL()).slideUp("fast");
    150         node.plus_img.src = node.relpath+"ftv2pnode.png";
     108        node.plus_img.src = node.relpath+"arrowright.png";
    151109        node.expanded = false;
    152110      } else {
     
    156114    node.expandToggle.appendChild(imgNode);
    157115    domNode.appendChild(node.expandToggle);
    158     imgNode.src = node.relpath+"ftv2pnode.png";
     116    imgNode.src = node.relpath+"arrowright.png";
    159117  } else {
    160118    var span = document.createElement("span");
     
    312270      }
    313271      if (node.isLast) {
    314         node.plus_img.src = node.relpath+"ftv2mlastnode.png";
     272        node.plus_img.src = node.relpath+"arrowdown.png";
    315273      } else {
    316         node.plus_img.src = node.relpath+"ftv2mnode.png";
     274        node.plus_img.src = node.relpath+"arrowdown.png";
    317275      }
    318276      node.expanded = true;
     
    384342      }
    385343      $(node.getChildrenUL()).css({'display':'block'});
    386       if (node.isLast) {
    387         node.plus_img.src = node.relpath+"ftv2mlastnode.png";
    388       } else {
    389         node.plus_img.src = node.relpath+"ftv2mnode.png";
    390       }
     344      node.plus_img.src = node.relpath+"arrowdown.png";
    391345      node.expanded = true;
    392346      var n = node.children[o.breadcrumbs[index]];
     
    526480  o.node.isLast = true;
    527481  o.node.plus_img = document.createElement("img");
    528   o.node.plus_img.src = relpath+"ftv2pnode.png";
     482  o.node.plus_img.src = relpath+"arrowright.png";
    529483  o.node.plus_img.width = 16;
    530484  o.node.plus_img.height = 22;
Note: See TracChangeset for help on using the changeset viewer.