Changeset 9480

Show
Ignore:
Timestamp:
04/11/10 12:24:01 (3 years ago)
Author:
p_lindheimer
Message:

fixes #4201 revert r9356 removed in error re #4110, also add cursor:pointer to up arrows as well as down

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.8/core/module.xml

    r9463 r9480  
    44  <category>Basic</category> 
    55  <name>Core</name> 
    6   <version>2.8.0.0beta1.7</version> 
     6  <version>2.8.0.0beta1.8</version> 
    77  <publisher>FreePBX</publisher> 
    88  <license>GPLv2+</license> 
     
    1010  <canuninstall>no</canuninstall> 
    1111  <changelog> 
     12    *2.8.0.0beta1.8* #4201 
    1213    *2.8.0.0beta1.7* #4174, #4190 
    1314    *2.8.0.0beta1.6* #4181, #4184 
  • modules/branches/2.8/core/page.routing.php

    r9406 r9480  
    623623      <?php   // move up 
    624624      if ($key > 0) {?> 
    625         <img src="images/resultset_up.png" onclick="repositionTrunk('<?php echo $key ?>','up')" alt="<?php echo _("Move Up")?>" style="float:none; margin-left:0px; margin-bottom:0px;" width="12px" height="12px"> 
     625        <img src="images/resultset_up.png" onclick="repositionTrunk('<?php echo $key ?>','up')" alt="<?php echo _("Move Up")?>" style="cursor:pointer; float:none; margin-left:0px; margin-bottom:0px;" width="12px" height="12px"> 
    626626      <?php  } else { ?> 
    627627        <img src="images/blank.gif" style="float:none; margin-left:0px; margin-bottom:0px;" width="9" height="11"> 
     
    851851} 
    852852 
     853//TODO: maybe add action vs. it being blank and assumed above? 
     854function repositionTrunk(key,direction) { 
     855  switch (direction) { 
     856  case 'up': 
     857  case 'down': 
     858    document.getElementById('repotrunkdirection').value=direction; 
     859    document.getElementById('repotrunkkey').value=key; 
     860    clearPatterns(); 
     861    document.getElementById('routeEdit').submit(); 
     862    break; 
     863  } 
     864} 
    853865 
    854866function deleteTrunk(key) {