Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #12617: throw Blob() support errors #12666

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/assets/js/customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,11 @@ window.onload = function () { // wait for load in a dumb way because B-0

// browser support alerts
if (!window.URL && navigator.userAgent.toLowerCase().indexOf('safari') != -1) {
showCallout('Looks like you\'re using safari, which sadly doesn\'t have the best support' +
showCallout('Looks like you\'re using Safari, which sadly doesn\'t have the best support' +
'for HTML5 blobs. Because of this your file will be downloaded with the name <code>"untitled"</code>.' +
'However, if you check your downloads folder, just rename this <code>"untitled"</code> file' +
'to <code>"bootstrap.zip"</code> and you should be good to go!')
} else if (!window.URL && !window.webkitURL) {
} else if ((!window.URL && !window.webkitURL) || !new Blob()) {
$('.bs-docs-section, .bs-docs-sidebar').css('display', 'none')

showCallout('Looks like your current browser doesn\'t support the Bootstrap Customizer. Please take a second' +
Expand Down