From 3e9dd0e2e37fab21fb7eb406d50a12e82645876c Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 5 Oct 2009 19:15:38 +0200 Subject: [PATCH] Remove include() from website. --- doc/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/index.html b/doc/index.html index 71ee3b46022..f5340c49043 100644 --- a/doc/index.html +++ b/doc/index.html @@ -41,8 +41,8 @@

-include("/utils.js");
-include("/http.js");
+node.mixin(require("/utils.js"));
+node.mixin(require("/http.js"));
 createServer(function (req, res) {
   setTimeout(function () {
     res.sendHeader(200, {"Content-Type": "text/plain"});