From: Sebastian Hammer Date: Thu, 18 Jan 2007 16:31:05 +0000 (+0000) Subject: Moved display of source to beginning of subrecord X-Git-Tag: stable.27032007~58 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=5a249110f007ef035a32b7ae9dda6f36af9cf0f2;p=pazpar2-moved-to-github.git Moved display of source to beginning of subrecord --- diff --git a/www/demo/search.js b/www/demo/search.js index b08450d..aa5d03c 100644 --- a/www/demo/search.js +++ b/www/demo/search.js @@ -1,4 +1,4 @@ -/* $Id: search.js,v 1.39 2007-01-18 16:21:23 quinn Exp $ +/* $Id: search.js,v 1.40 2007-01-18 16:31:05 quinn Exp $ * --------------------------------------------------- * Javascript container */ @@ -330,8 +330,8 @@ function paint_subrecord(node) var table = document.createElement('table'); var zurl = node.getAttribute('id'); var tr = paint_details_tr('Source', document.createTextNode(zurl)); - paint_data_elements(table, node); table.appendChild(tr); + paint_data_elements(table, node); return table; }