[svn r10374] edit mode (basic view) : PNG arrow are now GIF

skala
Eric Marguin 20 years ago
parent c4811bb76e
commit 04bb4d795f
  1. BIN
      main/newscorm/img/arrow_down_0.gif
  2. BIN
      main/newscorm/img/arrow_down_1.gif
  3. BIN
      main/newscorm/img/arrow_down_2.gif
  4. BIN
      main/newscorm/img/arrow_up_0.gif
  5. BIN
      main/newscorm/img/arrow_up_1.gif
  6. BIN
      main/newscorm/img/arrow_up_2.gif
  7. 4
      main/newscorm/learnpath.class.php

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

@ -4261,7 +4261,7 @@ class learnpath {
if($arrLP[$i]['previous_item_id'] != 0)
{
$return .= "\t\t\t" . '<a href="' . $_SERVER['PHP_SELF'] . '?cidReq=' . $_GET['cidReq'] . '&amp;action=move_item&amp;direction=up&amp;id=' . $arrLP[$i]['id'] . '&amp;lp_id=' . $this->lp_id . '">';
$return .= '<img alt="" src="img/arrow_up_' . ($arrLP[$i]['depth'] % 3) . '.png" />';
$return .= '<img alt="" src="img/arrow_up_' . ($arrLP[$i]['depth'] % 3) . '.gif" />';
$return .= '</a>' . "\n";
}
else
@ -4270,7 +4270,7 @@ class learnpath {
if($arrLP[$i]['next_item_id'] != 0)
{
$return .= "\t\t\t" . '<a href="' . $_SERVER['PHP_SELF'] . '?cidReq=' . $_GET['cidReq'] . '&amp;action=move_item&amp;direction=down&amp;id=' . $arrLP[$i]['id'] . '&amp;lp_id=' . $this->lp_id . '">';
$return .= '<img src="img/arrow_down_' . ($arrLP[$i]['depth'] % 3) . '.png" />';
$return .= '<img src="img/arrow_down_' . ($arrLP[$i]['depth'] % 3) . '.gif" />';
$return .= '</a>' . "\n";
}
else

Loading…
Cancel
Save