summaryrefslogtreecommitdiffstats
path: root/lib/output/folder.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output/folder.js')
-rw-r--r--lib/output/folder.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/output/folder.js b/lib/output/folder.js
index 4d8584e..f5b7063 100644
--- a/lib/output/folder.js
+++ b/lib/output/folder.js
@@ -73,16 +73,6 @@ module.exports = function folderOutput(Base) {
return pathUtil.resolveInRoot.apply(null, [this.root()].concat(_.toArray(arguments)));
};
- // Resolve a file path from a page (in the output folder)
- // Result is an absolute path (enforced in outptu folder)
- FolderOutput.prototype.resolveOutputForPage = function(page, filename) {
- if (_.isString(page)) page = this.book.getPage(page);
-
- var abs = page.resolveLocal(filename);
- return this.resolve(abs);
- };
-
-
// Copy a file to the output
FolderOutput.prototype.copyFile = function(from, to) {
var that = this;