Browse Source

Cosmetic improvements to book ingest process.

pull/105/head
Alexander O'Neill 14 years ago
parent
commit
1cfd45cc02
  1. 6
      ilives/book.inc

6
ilives/book.inc

@ -43,8 +43,9 @@ class IslandoraBook {
'path' => 'fedora/ilives/retrieve_unapi/js', // path we defined in hook_menu
'wrapper' => 'mods-wrapper', // the HTML that wraps the element that needs to be replaced
'method' => 'replace', // the method we're going to use: a replace operation
'effect' => 'fade', // the effect used when replacing the element (try fade!)
)
//'effect' => 'fade', // the effect used when replacing the element (try fade!)
),
'#suffix' => '<br/>',
);
drupal_add_js('', 'inline');
// We define a <div> wrapper. Everything in it will be replaced.
@ -56,6 +57,7 @@ class IslandoraBook {
$form['mods']['mods_record'] = array(
'#type' => 'textarea',
'#title' => 'MODS Record to Import',
'#rows' => 20,
'#value' => (!empty($mods_save) ? $mods_save['mods']['mods_record'] : ''),
);
return $form;

Loading…
Cancel
Save