diff options
| author | Chris Rebert <[email protected]> | 2014-05-23 08:48:45 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-05-23 08:48:45 -0700 |
| commit | 676fda9c8f59aa9c05f0579209d8018aceb1ac50 (patch) | |
| tree | f79b0bf1028a1a0a2612850cb64f5ac7095790ac /docs/customize.html | |
| parent | 10e9fef85c6afde2b3804df928d9351b0f110a6c (diff) | |
| parent | 8a62f9e61f84af1bb6f683431fbba15969c49eca (diff) | |
| download | bootstrap-676fda9c8f59aa9c05f0579209d8018aceb1ac50.tar.xz bootstrap-676fda9c8f59aa9c05f0579209d8018aceb1ac50.zip | |
Merge pull request #13626 from twbs/address-13090
show proper error message when viewing Customizer in IE8
Diffstat (limited to 'docs/customize.html')
| -rw-r--r-- | docs/customize.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/customize.html b/docs/customize.html index 2c596eaa6..2e067b8f4 100644 --- a/docs/customize.html +++ b/docs/customize.html @@ -5,6 +5,23 @@ slug: customize lead: Customize Bootstrap's components, Less variables, and jQuery plugins to get your very own version. --- +<!-- less.js isn't IE8-compatible and throws an exception during initialization, so our Blob compatibility check and error messaging code never get called in that case. + So we use a conditional comment instead to inform folks about the lack of IE8 support. + The alert covers up the entire customizer UI. +--> +<!--[if lt IE 9]> + <style> + .bs-customizer, + .bs-docs-sidebar { + display: none; + } + </style> + <div class="alert alert-danger bs-customizer-alert-ie"> + <strong>The Bootstrap Customizer does not support IE9 and below.</strong><br> + Please take a second to <a href="http://browsehappy.com/">upgrade to a more modern browser</a>. + </div> +<![endif]--> + <!-- Customizer form --> <form class="bs-customizer" role="form"> <div class="bs-docs-section" id="less-section"> |
