diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-06-29 00:21:11 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-06-29 00:21:11 +0200 |
commit | e81f24cc6e2de2ed314a1c912c4cb4853b4c13fe (patch) | |
tree | a55638cb602902a8dc95ff703f8ef3371784a5a5 /routes | |
parent | ffc96483ac114306643e2681ed37f3374433ebea (diff) | |
download | collection-json-explorer-e81f24cc6e2de2ed314a1c912c4cb4853b4c13fe.tar.gz collection-json-explorer-e81f24cc6e2de2ed314a1c912c4cb4853b4c13fe.tar.bz2 collection-json-explorer-e81f24cc6e2de2ed314a1c912c4cb4853b4c13fe.tar.xz collection-json-explorer-e81f24cc6e2de2ed314a1c912c4cb4853b4c13fe.zip |
o Adding links on each item.
Diffstat (limited to 'routes')
-rw-r--r-- | routes/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/index.js b/routes/index.js index 9bd03cb..6910dfa 100644 --- a/routes/index.js +++ b/routes/index.js @@ -23,7 +23,7 @@ exports.render = function(req, res){ clientRes.on('end', function (chunk) { var doc = collection_json.fromObject(JSON.parse(body)); res.render('data', { - title: 'Rendering ' + req.query.url, + url: req.query.url, doc: doc, headers: clientRes.headers, raw: body, |