Skip to content

Commit

Permalink
Rename assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Oct 13, 2011
1 parent e68063a commit 1258d33
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<![endif]-->

<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="scalex.css" rel="stylesheet">

<link type="application/opensearchdescription+xml" rel="search" href="search.xml" title="Scalex">
<link rel="shortcut icon" href="favicon.ico">
Expand Down Expand Up @@ -97,7 +97,7 @@ <h2>Scaladoc Index</h2>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<!--<script src="jquery.min.js"></script>-->
<script src="client.js"></script>
<script src="scalex.js"></script>
</body>
</html>

9 changes: 7 additions & 2 deletions style.css → scalex.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ html, body {

/* Page header tweaks */
.page-header {
background-color: #f5f5f5;
padding: 20px 20px 3px 20px;
padding: 20px 20px 2px 20px;
margin: 0;
background: -moz-linear-gradient(center top , #fafafa, #eaeaea) repeat scroll 0 0 #fafafa;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#eaeaea));
background: -webkit-linear-gradient(top , #fafafa, #eaeaea) repeat scroll 0 0 #fafafa;
background: -ms-linear-gradient(top , #fafafa, #eaeaea) repeat scroll 0 0 #fafafa;
background: -o-linear-gradient(top , #fafafa, #eaeaea) repeat scroll 0 0 #fafafa;
background: linear-gradient(top , #fafafa, #eaeaea) repeat scroll 0 0 #fafafa;
}

.page-header h1 {
Expand Down
2 changes: 2 additions & 0 deletions client.js → scalex.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ $(function() {
var $greetings = $(".greetings");
var xhr;

//$form.attr("data-url", "http://scalex:8080/");

if (query = getParameterByName("q")) $input.val(query);

$input.bind("keyup", function() {
Expand Down

0 comments on commit 1258d33

Please sign in to comment.