--- loncom/homework/chemresponse.pm 2003/10/21 20:49:06 1.21 +++ loncom/homework/chemresponse.pm 2003/10/21 20:58:29 1.22 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # chemical equation style response # -# $Id: chemresponse.pm,v 1.21 2003/10/21 20:49:06 albertel Exp $ +# $Id: chemresponse.pm,v 1.22 2003/10/21 20:58:29 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -235,9 +235,8 @@ sub start_organicstructure { if ($options =~ /border/) { $result.= '} '; } } elsif ($target eq 'edit') { $result .=&Apache::edit::tag_start($target,$token); - $result .=&Apache::edit::text_arg('Width:','width',$token,5); - $result .=&Apache::edit::text_arg('Height:','height',$token,5); - $result .=&Apache::edit::text_arg('TeXwidth:','texwidth',$token,5); + $result .=&Apache::edit::text_arg('Width (pixels):','width',$token,5); + $result .=&Apache::edit::text_arg('TeXwidth (mm):','texwidth',$token,5); $result .=''; $result .=&Apache::edit::text_arg('Molecule:','molecule',$token,40); my $molecule=&Apache::lonxml::get_param('molecule',$parstack, @@ -260,8 +259,8 @@ sub start_organicstructure { } elsif ($target eq 'modified') { my $constructtag=&Apache::edit::get_new_args($token,$parstack, $safeeval,'molecule', - 'width','height', - 'texwidth','options'); + 'width','texwidth', + 'options'); if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } } return $result;