Skip to content

Commit

Permalink
Merge pull request #294 from andreacampi/issue-293
Browse files Browse the repository at this point in the history
[#293] Correctly handle nested contents.
  • Loading branch information
bramstein committed Jul 16, 2012
2 parents 3a8af89 + 7b25abb commit 435eaaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/articlemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ goog.scope(function() {
// Update the new index with the articles from the initial document, which we have already loaded.
docs.forEach(function(doc) {
ArticleManager.initialDocument.meta = doc.meta;
ArticleManager.initialDocument.children = doc.children;
ArticleManager.initialDocument.contents = doc.contents;
ArticleManager.initialDocument.requirements = doc.requirements;

// Copy over the meta data inside the initial document
Expand Down

0 comments on commit 435eaaf

Please sign in to comment.