Skip to content

Commit

Permalink
Different theme
Browse files Browse the repository at this point in the history
  • Loading branch information
lipis committed Sep 27, 2013
1 parent fb7a47e commit 6e77f59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions assets/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ window.onload = function () {
document.getElementById('btn-bootstrap').onclick = function() {
if (document.getElementById('bootstrap').rel == 'stylesheet') {
document.getElementById('bootstrap').rel = 'styleshit';
document.getElementById('btn-bootstrap').innerHTML = 'Enable Bootstrap';
document.getElementById('btn-bootstrap').innerHTML = document.getElementById('btn-bootstrap').innerHTML.replace('Disable', 'Enable');
} else {
document.getElementById('bootstrap').rel = 'stylesheet';
document.getElementById('btn-bootstrap').innerHTML = 'Disable Bootstrap';
document.getElementById('btn-bootstrap').innerHTML = document.getElementById('btn-bootstrap').innerHTML.replace('Enable', 'Disable');
}
}
}
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="author" content="">

<title>flag-icon-css</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css" rel="stylesheet" id="bootstrap">
<link href="//netdna.bootstrapcdn.com/bootswatch/3.0.0/flatly/bootstrap.min.css" rel="stylesheet" id="bootstrap">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<link href="./assets/docs.css" rel="stylesheet">
<link href="./css/flag-icon.css" rel="stylesheet">
Expand All @@ -22,7 +22,7 @@
</head>

<body>
<a href="https://github.com/lipis/flag-icon-css"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<a href="https://github.com/lipis/flag-icon-css"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="jumbotron text-center">
<div class="container">
<h1>flag-icon<span class="text-muted">-css</span></h1>
Expand All @@ -40,11 +40,11 @@ <h1>flag-icon<span class="text-muted">-css</span></h1>
</a>
</p>
<p>
<button id="btn-bootstrap" class="btn btn-default btn-xs">Disable Bootstrap</button>
<button id="btn-bootstrap" class="btn btn-default btn-xs">Disable Bootstrap Theme</button>
</p>
<p>
<iframe src="http://ghbtns.com/github-btn.html?user=lipis&repo=flag-icon-css&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="86" height="20"></iframe>
allowtransparency="true" frameborder="0" scrolling="0" width="80" height="20"></iframe>
</p>
</div>
</div>
Expand Down

0 comments on commit 6e77f59

Please sign in to comment.