X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=mkdru.theme.js;h=875d0f341df25a4972b2aa61e2cb54931824ccc0;hb=2e2e8b3b68f53f8aaf784bc60432c36443011314;hp=7d92e61cb3725e5124162f591787a0e98f9d283f;hpb=66f3bea850ee445427da4ec46e18d4374dd3e953;p=mkdru-moved-to-drupal.org.git diff --git a/mkdru.theme.js b/mkdru.theme.js index 7d92e61..875d0f3 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -17,7 +17,7 @@ Drupal.theme.prototype.mkdruResult = function(hit, num, detailLink) { return html; }; -Drupal.theme.prototype.mkdruDetail = function(data) { +Drupal.theme.prototype.mkdruDetail = function(data, linkBack) { var html = ''; if (data["md-title"] != undefined) { html += ''; html += '
' + Drupal.t("Title") + ': ' @@ -48,7 +48,7 @@ Drupal.theme.prototype.mkdruDetail = function(data) { + data["location"][0]["@name"] + " (" + data["location"][0]["@id"] + ")" + '
'; - html += 'Return to result list...'; + html += 'Return to result list...'; return html; };