From 5422309e9648eb528da5f0a42382fd3f98dee070 Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Mon, 20 Jun 2016 08:32:05 -0700 Subject: [PATCH 1/2] Update name --- docs/credits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/credits.md b/docs/credits.md index 8d8de8e9..9347fa66 100644 --- a/docs/credits.md +++ b/docs/credits.md @@ -4,7 +4,7 @@ Mithril was originally written by Leo Horie, but it is where it is today thanks Special thanks to: -- Pat Tivac, who exposed most of the public API for Mithril 1.0 and brought in test coverage +- Pat Cavit, who exposed most of the public API for Mithril 1.0 and brought in test coverage - Isiah Meadows, who brought in linting, modernized the test suite and has been a strong voice in design discussions - Zoli Kahan, who replaced the original Promise implementation with one that actually worked properly - Alec Embke, who single-handedly wrote the JSON-P implementation From 05c8c411ad6243d04991bc771f73adf9a6965908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Yves=20G=C3=A9rardy?= Date: Mon, 20 Jun 2016 18:37:17 +0200 Subject: [PATCH 2/2] Remove the injection of `Stream` into `requestService` I guess the leftovers of a previous version... --- examples/threaditjs/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/threaditjs/app.js b/examples/threaditjs/app.js index b8bf00d9..12063cab 100644 --- a/examples/threaditjs/app.js +++ b/examples/threaditjs/app.js @@ -1,7 +1,7 @@ T.time("Setup"); var Stream = require("../../util/stream") -var requestService = require("../../request/request")(window, Stream) +var requestService = require("../../request/request")(window) var request = requestService.xhr var m = require("../../render/hyperscript") var trust = require("../../render/trust")