vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
737 B

  1. <?js
  2. //
  3. // Output the HTML for showing a method description in a method table.
  4. //
  5. var methodName = obj;
  6. var self = this;
  7. var comment = self.getComment(methodName);
  8. ?>
  9. <tr class="collapsible toggle" onclick="toggleTable('methodTable','<?js= comment.name ?>', this);">
  10. <td colspan="2"><span parent="<?js= comment.name ?>" class="right-caret" id="method_<?js= comment.name ?>"></span>
  11. <?js= comment.prototype ?>
  12. </tr>
  13. <tr class="hidden" parent="<?js= comment.name ?>">
  14. <td class="midMethods">Returns: <?js= comment.returns ?></td>
  15. <td>
  16. <?js= comment.description ?>
  17. </td>
  18. </tr>