Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Fix WorldCat links
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermendes committed Jan 12, 2017
1 parent c491278 commit 125dff9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pybossa_analyst/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf8 -*-

__version__ = "2.1.0"
__version__ = "2.1.1"
2 changes: 1 addition & 1 deletion pybossa_analyst/static/js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function handleResult(results, oclcNumber) {
html = '<html>' + results + '</html>',
doc = parser.parseFromString(html, "text/xml"),
record = $(doc).find('#' + oclcNumber + ' p')[0],
link = getWorldCatLink(record, oclcNumber);
link = getWorldCatLink(oclcNumber);
$('#oclc-' + oclcNumber).append(record);
$('#oclc-' + oclcNumber).append(link);
}
Expand Down

0 comments on commit 125dff9

Please sign in to comment.