fix zoomToArticle() for new JSON reply format
This commit is contained in:
parent
ccdddcc251
commit
6f1c5d1760
|
@ -1564,11 +1564,12 @@ function zoomToArticle(event, id) {
|
||||||
onComplete: function(transport) {
|
onComplete: function(transport) {
|
||||||
notify('');
|
notify('');
|
||||||
|
|
||||||
if (transport.responseXML) {
|
var reply = JSON.parse(transport.responseText);
|
||||||
|
|
||||||
|
if (reply) {
|
||||||
//closeArticlePanel();
|
//closeArticlePanel();
|
||||||
|
|
||||||
var article = transport.responseXML.getElementsByTagName("article")[0];
|
var content = reply[0]['content'];
|
||||||
var content = article.firstChild.nodeValue;
|
|
||||||
|
|
||||||
var article_pane = new dijit.layout.ContentPane({
|
var article_pane = new dijit.layout.ContentPane({
|
||||||
title: "article-" + id , content: content,
|
title: "article-" + id , content: content,
|
||||||
|
|
Loading…
Reference in New Issue