From 563dde0ae96e3afd2288e1a329408ca31d20462f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wrzeszcz?= Date: Sun, 11 Dec 2011 10:07:07 +0100 Subject: [PATCH] Fixed query.js inclusion path. --- jsdoc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsdoc.js b/jsdoc.js index 4353576b..e955924e 100644 --- a/jsdoc.js +++ b/jsdoc.js @@ -156,7 +156,7 @@ function main() { } if (env.opts.query) { - env.opts.query = require('query').toObject(env.opts.query); + env.opts.query = require('common/query').toObject(env.opts.query); } // which version of javascript will be supported? (rhino only) @@ -244,4 +244,4 @@ function main() { else { // TODO throw no publish warning? } } -} \ No newline at end of file +}