Skip to content

Commit

Permalink
Changed the disclosure triangle to be a unicode character instead of …
Browse files Browse the repository at this point in the history
…the images
  • Loading branch information
Corey Oordt committed Feb 1, 2010
1 parent c6f2699 commit 59cf711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/templates/admin/editor/tree_editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
$('table').hide(); /* hide table until set up */
$('a.paste_target').hide();

expand_sym = '<img alt="+" src="{{ EDITOR_MEDIA_PATH }}img/disclosure-right.png">';
collapse_sym = '<img alt="-" src="{{ EDITOR_MEDIA_PATH }}img/disclosure-down.png">';
expand_sym = '&#9658;'; //'<img alt="+" src="{{ EDITOR_MEDIA_PATH }}img/disclosure-right.png">';
collapse_sym = '&#9660;'; //'<img alt="-" src="{{ EDITOR_MEDIA_PATH }}img/disclosure-down.png">';

tree_structure_clean(); /* reduce structure to actually present items */

Expand Down

0 comments on commit 59cf711

Please sign in to comment.