summaryrefslogtreecommitdiffstats
path: root/lib/backbone/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backbone/page.js')
-rw-r--r--lib/backbone/page.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/backbone/page.js b/lib/backbone/page.js
index c75c434..94812d9 100644
--- a/lib/backbone/page.js
+++ b/lib/backbone/page.js
@@ -89,9 +89,10 @@ Page.prototype.parse = function() {
.then(that.update);
})
- // Render markup
+ // Render markup using the parser
.then(function() {
- return that.parser.page(that.content);
+ return that.parser.page(that.content)
+ .then(that.update);
});
};