Skip to content

Commit

Permalink
Item10354: Href fix
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@10704 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
PadraigLennon authored and PadraigLennon committed Feb 15, 2011
1 parent fc68567 commit 47147da
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin/Table.pm
Expand Up @@ -633,7 +633,7 @@ sub generateEditButtons {
my $buttons = CGI::hidden(-name => 'erp_action', -value => '');
$buttons .= CGI::a(
{
href => 'saveRow',
href => '#saveRow',
title => NOISY_SAVE,
class => 'erp_submit ui-icon ui-icon-disk'
},
Expand All @@ -643,7 +643,7 @@ sub generateEditButtons {
if ( $attrs->{quietsave} ) {
$buttons .= CGI::image_button(
{
href => 'saveRowQuietly',
href => '#saveRowQuietly',
title => QUIET_SAVE,
src => '%PUBURLPATH%/%SYSTEMWEB%/EditRowPlugin/quiet.gif'
},
Expand All @@ -652,7 +652,7 @@ sub generateEditButtons {
}
$buttons .= CGI::a(
{
href => 'erp_cancel',
href => '#erp_cancel',
title => CANCEL_ROW,
class => 'erp_submit ui-icon ui-icon-cancel'
},
Expand All @@ -665,7 +665,7 @@ sub generateEditButtons {
if ( !$topRow ) {
$buttons .= CGI::a(
{
href => 'upRow',
ref => '#upRow',
title => UP_ROW,
class => 'erp_submit ui-icon ui-icon-arrow-1-n'
},
Expand All @@ -675,7 +675,7 @@ sub generateEditButtons {
if ( !$bottomRow ) {
$buttons .= CGI::a(
{
href => 'downRow',
href => '#downRow',
title => DOWN_ROW,
class => 'erp_submit ui-icon ui-icon-arrow-1-s'
},
Expand All @@ -685,7 +685,7 @@ sub generateEditButtons {
}
$buttons .= CGI::a(
{
href => 'addRow',
href => '#addRow',
title => ADD_ROW,
class => 'erp_submit ui-icon ui-icon-plusthick'
},
Expand All @@ -694,7 +694,7 @@ sub generateEditButtons {

$buttons .= CGI::a(
{
href => 'deleteRow',
href => '#deleteRow',
class => 'editRowPlugin_willDiscard erp_submit ui-icon ui-icon-minusthick',
title => DELETE_ROW
},
Expand Down

0 comments on commit 47147da

Please sign in to comment.