aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/vendor/react-router/docs/api/misc
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-13 16:28:45 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-13 16:28:45 +0200
commitb59234e25db8418cd53795ce94dda943e54f8ac1 (patch)
tree0fae4d0f0fba8330327a834f0ff2b1ce733fc002 /web/src/vendor/react-router/docs/api/misc
parent2842f25b82799315c36a81564619cb5467bff61f (diff)
downloadmitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.tar.gz
mitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.tar.bz2
mitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.zip
use bowser-installer
Diffstat (limited to 'web/src/vendor/react-router/docs/api/misc')
-rw-r--r--web/src/vendor/react-router/docs/api/misc/Location.md66
-rw-r--r--web/src/vendor/react-router/docs/api/misc/transition.md24
2 files changed, 0 insertions, 90 deletions
diff --git a/web/src/vendor/react-router/docs/api/misc/Location.md b/web/src/vendor/react-router/docs/api/misc/Location.md
deleted file mode 100644
index f0b2077b..00000000
--- a/web/src/vendor/react-router/docs/api/misc/Location.md
+++ /dev/null
@@ -1,66 +0,0 @@
-API: `Location` (object)
-==========================
-
-You can supply the router with your own location implementation. The
-following methods must be implemented:
-
-Methods
--------
-
-### `setup(onChange)`
-
-Called when the router is first setup. Whenever an external actor should
-cause the router to react, call `onChange` (for example, on
-`window.hashchange`).
-
-### `teardown`
-
-Called when the router is torn down.
-
-### `push`
-
-Called when the router is transitioning from one path to another.
-
-### `replace`
-
-Called when ther router is replacing (not transitioning) one url with
-another.
-
-### `pop`
-
-Called when the router attempts to go back one entry in the history.
-
-### `getCurrentPath`
-
-Should return the current path as a string.
-
-### `toString`
-
-Should return a useful string for logging and debugging.
-
-Example
--------
-
-This is a terrible example, you're probably better off looking at the
-implementations in this repository.
-
-```js
-var MyLocation = {
-
- setup: function (onChange) {},
-
- teardown: function () {},
-
- push: function (path) {},
-
- replace: function (path) {},
-
- pop: function () {},
-
- getCurrentPath: function () {},
-
- toString: function () {}
-
-};
-```
-
diff --git a/web/src/vendor/react-router/docs/api/misc/transition.md b/web/src/vendor/react-router/docs/api/misc/transition.md
deleted file mode 100644
index fc039572..00000000
--- a/web/src/vendor/react-router/docs/api/misc/transition.md
+++ /dev/null
@@ -1,24 +0,0 @@
-API: `transition` (object)
-==========================
-
-This object is sent to the [transition hooks][transition-hooks] as the
-first argument.
-
-Methods
--------
-
-### `abort()`
-
-Aborts a transition.
-
-### `redirect(to, params, query)`
-
-Redirect to another route.
-
-### `retry()`
-
-Retrys a transition. Typically you save off a transition you care to
-return to, finish the workflow, then retry.
-
- [transition-hooks]:/docs/api/components/RouteHandler.md#static-lifecycle-methods
-