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.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/backbone/page.js b/lib/backbone/page.js
index fdfe3f7..33bd636 100644
--- a/lib/backbone/page.js
+++ b/lib/backbone/page.js
@@ -10,6 +10,10 @@ function Page(book, filename) {
this.filename = filename;
}
+// Return the filename of the page with another extension
+Page.prototype.withExtension = function(ext) {
+ return
+};
module.exports = Page;