Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter Bootstrap & ZeroClipboard.swf (missing file error)

I used Twitter Bootstrap (latest version, v3.2.0) to set up a single-page basic website. All functionality seems fine, but my JavaScript Console, upon loading the site, indicates the following error:

"Failed to load resource: the server responded with a status of 500 (Internal Server Error)"

It points to a missing file, namely "../assets/flash/ZeroClipboard.swf".

I cannot find much information on how ZeroClipboard is integrated into Twitter Bootstrap. Has someone had a similar error?

Should I download the file to avoid the error even if 1) it doesn't seem to be causing problems and 2) I don't know where the error is originating from?

like image 276
Jesse Avatar asked Sep 24 '14 00:09

Jesse


People also ask

Does twitter use Bootstrap?

At Twitter, Bootstrap has quickly become one of our many go-to front-end tools when starting new applications and sites.

What does twitter bootstrap do?

Twitter Bootstrap is a front end framework to develop web apps and sites fast. In modern web development, there are several components which are required in almost all web projects. Bootstrap provides you with all those basic modules - Grid, Typography, Tables, Forms, Buttons, and Responsiveness.

Is twitter bootstrap the same as Bootstrap?

There's no difference. Twitter Bootstrap was the official name for version 1.0 (Twitter Bootstrap). Later the name has been shortened.

What is Tweeter Bootstrap?

Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. Nerd alert: Bootstrap is built with Less and was designed to work out of the gate with only modern browsers in mind.


1 Answers

ZeroClipboard is only used in Bootstrap's documentation to make the "Copy" buttons for the code samples work. Presumably you're including docs.min.js (or some other docs-specific JS) by mistake.

like image 99
cvrebert Avatar answered Sep 18 '22 22:09

cvrebert