Skip to content

Commit

Permalink
cleanup old stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed May 4, 2011
1 parent d447898 commit 96c3e70
Show file tree
Hide file tree
Showing 32 changed files with 49 additions and 1,852 deletions.
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion readme.markdown → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ http://twitter.com/mdo
# Todos

* Cross browser checks? Show this anywhere?
* Write up brief section on browser support
* Write up brief section on browser support
* LICENSE from legal
File renamed without changes
File renamed without changes
11 changes: 6 additions & 5 deletions less/baseline.css → baseline-1.0.0.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
24 changes: 24 additions & 0 deletions docs/assets/js/application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Javascript to toggle the dropdowns
$(document).ready(function(){
// Dropdowns
$("body").bind("click", function(e) {
$("ul.menu-dropdown").hide();
$('a.menu').parent("li").removeClass("open").children("ul.menu-dropdown").hide();
});
$("a.menu").click(function(e) {
var $target = $(this);
var $parent = $target.parent("li");
var $siblings = $target.siblings("ul.menu-dropdown");
var $parentSiblings = $parent.siblings("li");
if ($parent.hasClass("open")) {
$parent.removeClass("open");
$siblings.hide();
} else {
$parent.addClass("open");
$siblings.show();
}
$parentSiblings.children("ul.menu-dropdown").hide();
$parentSiblings.removeClass("open");
return false;
});
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
63 changes: 17 additions & 46 deletions index.html → docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,31 @@
<title>Twitter Baseline</title>

<!-- // Less.js at the ready! -->
<link rel="stylesheet/less" type="text/css" media="all" href="less/baseline.less" />
<script type="text/javascript" src="js/less-1.0.41.min.js"></script>
<link href="../baseline-1.0.0.css" rel="stylesheet" type="text/css">

<!-- // jQuery! -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="http://tablesorter.com/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/jquery/hashgrid.js"></script>
<script type="text/javascript">
// Javascript to toggle the dropdowns
$(document).ready(function(){
// Dropdowns
$("body").bind("click", function(e) {
$("ul.menu-dropdown").hide();
$('a.menu').parent("li").removeClass("open").children("ul.menu-dropdown").hide();
});
$("a.menu").click(function(e) {
var $target = $(this);
var $parent = $target.parent("li");
var $siblings = $target.siblings("ul.menu-dropdown");
var $parentSiblings = $parent.siblings("li");
if ($parent.hasClass("open")) {
$parent.removeClass("open");
$siblings.hide();
} else {
$parent.addClass("open");
$siblings.show();
}
$parentSiblings.children("ul.menu-dropdown").hide();
$parentSiblings.removeClass("open");
return false;
});
});
</script>
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://tablesorter.com/jquery.tablesorter.min.js"></script>
<script src="assets/js/jquery/hashgrid.js"></script>

<!-- Code Highlighting -->
<script type="text/javascript" src="js/jquery/chili/jquery.chili-2.2.js"></script>
<script type="text/javascript" src="js/jquery/chili/recipes.js"></script>
<script id="setup" type="text/javascript">
ChiliBook.lineNumbers = true;
</script>
<script src="assets/js/jquery/chili/jquery.chili-2.2.js"></script>
<script src="assets/js/jquery/chili/recipes.js"></script>
<script id="setup">ChiliBook.lineNumbers = true;</script>

<script src="assets/js/application.js"></script>

<!-- Debug line-height -->
<!--
<style>
body {
background: url(img/baseline-10px.png) repeat 0 0, url(img/grid-940px.png) repeat-y top center;
background-color: #fff;
}
</style>
-->
<!--
<style>
body {
background: url(assets/img/baseline-10px.png) repeat 0 0, url(assets/img/grid-940px.png) repeat-y top center;
background-color: #fff;
}
</style>
-->
</head>



<body>

<div class="topbar">
Expand Down
24 changes: 0 additions & 24 deletions less/baseline.less

This file was deleted.

211 changes: 0 additions & 211 deletions less/bootstrap.less

This file was deleted.

Loading

0 comments on commit 96c3e70

Please sign in to comment.