diff options
| author | Maxime Locqueville <[email protected]> | 2017-06-01 08:11:06 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-06-01 09:09:46 -0700 |
| commit | c890d9a46b1483cf5857d8fd9d694ea6a06a9a2e (patch) | |
| tree | b66b28ebcb22206c122e183dabfc713e616c0d51 | |
| parent | 620257456ed0685cae6b6ff51d2ab1e37f02a4fa (diff) | |
| download | bootstrap-c890d9a46b1483cf5857d8fd9d694ea6a06a9a2e.tar.xz bootstrap-c890d9a46b1483cf5857d8fd9d694ea6a06a9a2e.zip | |
Fix search redirect
| -rw-r--r-- | _includes/scripts.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/scripts.html b/_includes/scripts.html index b9a83876b..bc411c226 100644 --- a/_includes/scripts.html +++ b/_includes/scripts.html @@ -31,7 +31,7 @@ inputSelector: '#search-input', transformData: function (hits) { return hits.map(function (hit) { - hit.url = hit.url.replace('https://v4-alpha.getbootstrap.com', 'http://localhost:9001/docs/4.0'); + hit.url = hit.url.replace('https://v4-alpha.getbootstrap.com', '/docs/4.0'); return hit; }); }, |
