Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-10-30 17:26:55 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-10-30 17:34:06 +0300
commit465135a0f8e47e7cf9d74c5c6e8fdfc107abf221 (patch)
tree263720cc034122c1663e385dddeb2cd5893fb6ea
parentf808026e5b925e3416897d2d61ad5e5ca515cc0c (diff)
Backport #32015
Fix redirects
-rw-r--r--site/docs/4.5/components/forms.md2
-rw-r--r--site/docs/4.5/getting-started/build-tools.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/4.5/components/forms.md b/site/docs/4.5/components/forms.md
index a3cd026187..6058b44abd 100644
--- a/site/docs/4.5/components/forms.md
+++ b/site/docs/4.5/components/forms.md
@@ -761,7 +761,7 @@ Here's how form validation works with Bootstrap:
- To reset the appearance of the form (for instance, in the case of dynamic form submissions using AJAX), remove the `.was-validated` class from the `<form>` again after submission.
- As a fallback, `.is-invalid` and `.is-valid` classes may be used instead of the pseudo-classes for [server side validation](#server-side). They do not require a `.was-validated` parent class.
- Due to constraints in how CSS works, we cannot (at present) apply styles to a `<label>` that comes before a form control in the DOM without the help of custom JavaScript.
-- All modern browsers support the [constraint validation API](https://www.w3.org/TR/html5/sec-forms.html#the-constraint-validation-api), a series of JavaScript methods for validating form controls.
+- All modern browsers support the [constraint validation API](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#the-constraint-validation-api), a series of JavaScript methods for validating form controls.
- Feedback messages may utilize the [browser defaults](#browser-defaults) (different for each browser, and unstylable via CSS) or our custom feedback styles with additional HTML and CSS.
- You may provide custom validity messages with `setCustomValidity` in JavaScript.
diff --git a/site/docs/4.5/getting-started/build-tools.md b/site/docs/4.5/getting-started/build-tools.md
index 873a1ca11b..58b5af285c 100644
--- a/site/docs/4.5/getting-started/build-tools.md
+++ b/site/docs/4.5/getting-started/build-tools.md
@@ -8,7 +8,7 @@ toc: true
## Tooling setup
-Bootstrap uses [npm scripts](https://docs.npmjs.com/misc/scripts) for its build system. Our [package.json]({{ site.repo }}/blob/v{{ site.current_version }}/package.json) includes convenient methods for working with the framework, including compiling code, running tests, and more.
+Bootstrap uses [npm scripts](https://docs.npmjs.com/misc/scripts/) for its build system. Our [package.json]({{ site.repo }}/blob/v{{ site.current_version }}/package.json) includes convenient methods for working with the framework, including compiling code, running tests, and more.
To use our build system and run our documentation locally, you'll need a copy of Bootstrap's source files and Node. Follow these steps and you should be ready to rock: