|
@@ -151,14 +304,21 @@ $js
$java_not_enabled
$molecule
-
-JME Editor courtesy of Peter Ertl, Novartis
+
+JME Editor courtesy of Peter Ertl, Novartis
+CHEMPAGE
+ }
+ $body .= <
$insert_answer
-
+
+
CHEMPAGE
@@ -169,25 +329,28 @@ CHEMPAGE
my $display=&mt('Draw Molecule');
if (defined($shown_text)) { $display=&mt($shown_text); }
my $iconpath=$Apache::lonnet::perlvar{'lonIconsURL'};
- my $function =
+ my $function =
'LONCAPA_draw_molecule_'.&get_uniq_name();
my $result=<
function $function() {
editor=window.open($nothing,'jmeedit','width=500,height=500,menubar=no,scrollbars=no,resizable=yes');
- editor.$docopen;
- editor.document.write('$start_page $body $end_page');
- editor.document.close();
- editor.focus();
+ if (editor) {
+ editor.$docopen;
+ editor.document.write('$start_page $body $resizejs $end_page');
+ editor.document.close();
+ editor.focus();
+ }
}
CHEMINPUT
+ my $jscall = "javascript:$function();void(0);";
if ($shown_text eq '') {
- $result .=<
+ $result .=<
PENCIL
} else {
- $result .= '';
+ $result .= '';
}
return $result;
}
@@ -467,37 +630,32 @@ sub end_organicstructure {
return $result;
}
-sub edit_reaction_button {
- my ($id,$field,$reaction)=@_;
- my $id_es=&escape($id);
- my $field_es=&escape($field);
- my $reaction_es=&escape($reaction);
- my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
- my $iconpath=$Apache::lonnet::perlvar{'lonIconsURL'};
- my $display=&mt('Edit Answer');
- my $start_page =
- &Apache::loncommon::start_page('LON-CAPA Reaction Editor',undef,
- {'frameset' => 1,
- 'js_ready' => 1,
- 'add_entries' => {
- 'rows' => "30%,*",
- 'border' => "0",}},);
- my $end_page =
- &Apache::loncommon::end_page({'frameset' => 1,
- 'js_ready' => 1});
- my $result=<
-
-EDITREACTION
+JS_PREVIEW
return $result;
}
@@ -524,11 +682,11 @@ sub start_reactionresponse {
$safeeval);
$result .=''.
&Apache::edit::text_arg('Answer:','answer',$token,40);
- $result .=&edit_reaction_button($id,&Apache::edit::html_element_name('answer'),$answer).'';
+ $result .= &reaction_preview(&Apache::edit::html_element_name('answer'), $answer).'';
my $initial=&Apache::lonxml::get_param('initial',$parstack,$safeeval);
$result.=''.
&Apache::edit::text_arg('Initial Reaction:','initial',$token,40);
- $result .=&edit_reaction_button($id,&Apache::edit::html_element_name('initial'),$initial).'';
+ $result .= &reaction_preview(&Apache::edit::html_element_name('initial'), $initial).'';
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
} elsif ($target eq 'modified') {
my $constructtag=&Apache::edit::get_new_args($token,$parstack,
@@ -616,7 +774,7 @@ sub end_reactionresponse {
if (($target eq 'web') && ($Apache::lonhomework::type ne 'exam') && ($status eq 'CAN_ANSWER')) {
my $reaction=$Apache::lonhomework::history{"resource.$partid.$id.submission"};
if ($reaction eq '') { $reaction=&Apache::lonxml::get_param('initial',$parstack,$safeeval); }
- $result.=&edit_reaction_button($id,"HWVAL_$id",$reaction);
+ $result .= &reaction_preview("HWVAL_$id", $reaction);
}
&Apache::response::end_response();
return $result;
|