From 67918361e682f420d4d18cccaba96242f8ad20c4 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Mon, 11 Apr 2011 16:59:22 -0500 Subject: [PATCH] remove old forwardButton class and "Please Wait..." text We'll add similar functionality using the YUI button stuff --- lib/WebGUI/Form/Submit.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/WebGUI/Form/Submit.pm b/lib/WebGUI/Form/Submit.pm index 5dbff9da2..21acc9513 100644 --- a/lib/WebGUI/Form/Submit.pm +++ b/lib/WebGUI/Form/Submit.pm @@ -61,10 +61,6 @@ sub new { my ( $class, @args ) = @_; my $self = $class->SUPER::new( @args ); $self->set( 'type' => 'submit' ); - if ( !$self->get('extras') ) { - my $i18n = WebGUI::International->new($self->session, 'WebGUI'); - $self->set( 'extras' => 'class="forwardButton" onclick="this.value\'' . $i18n->get(452) . '\'"' ); - } return $self; }