Skip to content

Commit

Permalink
Merge pull request react-bootstrap#689 from react-bootstrap/fix-prod-…
Browse files Browse the repository at this point in the history
…errors

Fix single quote bugs for docs in production
  • Loading branch information
AlexKVal committed May 17, 2015
2 parents 0f2ea79 + 1d02171 commit 0b409cd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/src/Root.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ const Root = React.createClass({

let head = {
__html: `<title>React Bootstrap</title>
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<link href='${this.props.assetBaseUrl}/assets/bundle.css' rel='stylesheet' />
<link href='${this.props.assetBaseUrl}/assets/favicon.ico' type='image/x-icon' rel='icon' />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="${this.props.assetBaseUrl}/assets/bundle.css" rel="stylesheet">
<link href="${this.props.assetBaseUrl}/assets/favicon.ico" type="image/x-icon" rel="icon">
<!--[if lt IE 9]>
<script src='https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js'></script>
<script src='https://oss.maxcdn.com/respond/1.4.2/respond.min.js'></script>
<script src='http://code.jquery.com/jquery-1.11.1.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-shim.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-sham.js'></script>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-shim.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-sham.js"></script>
<![endif]-->`
};

Expand Down

0 comments on commit 0b409cd

Please sign in to comment.