Changeset 12439
- Timestamp:
- 02/14/08 09:44:14 (11 months ago)
- Files:
-
- 1 modified
-
util/branches/dev/jsdoc/jsdoc.module (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
util/branches/dev/jsdoc/jsdoc.module
r12362 r12439 2711 2711 2712 2712 $prototype_chain = jsdoc_get_prototype_chain($node, array(3, 4)); 2713 if (!empty($prototype_chain)) { 2713 if(empty($prototype_chain)){ 2714 $prototype_chain = array($node); 2715 } 2716 else { 2714 2717 $form['prototype_chain'] = array( 2715 2718 '#value' => theme('jsdoc_object_prototype_chain', $prototype_chain), … … 2753 2756 ); 2754 2757 } 2758 2755 2759 for ($i = 0; $i < count($mixin_chain); $i++) { 2756 2760 $item = $mixin_chain[$i]->node; … … 2795 2799 foreach ($children_all as $type => $items) { 2796 2800 $type = substr($type, 0, -1); 2797 if ($type == 'variable') {2798 // TODO: Find something that has this2799 // and flag it "normal"2800 }2801 2801 foreach ($items as $item) { 2802 2802 if (is_object($item)) { … … 2844 2844 } 2845 2845 $children[$title]->url = $item->jsdoc_url; 2846 if ($type == 'variable') { 2847 $children[$title]->normal = true; 2848 } 2846 2849 if (trim(jsdoc_get_teaser($item)) != '') { 2847 2850 $children[$title]->summary = jsdoc_get_teaser($item);