Skip to content

Commit

Permalink
many fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
myfreeweb committed Nov 13, 2011
1 parent ccc3df1 commit 75647ad
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions index.html
@@ -1,14 +1,13 @@
<!doctype html>
<html>
<head>
<title>Written? Kitten!</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link type="text/css" href="css/themename/jquery-ui-1.8.16.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>
<link href="http://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet" type="text/css" />
<link href="css/themename/jquery-ui-1.8.16.custom.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="js/jquery-ui-1.8.16.custom.min.js"></script>

<style type="text/css">

body {
background:url(kittenbg.gif) repeat #6AAFDA;
}
Expand Down Expand Up @@ -91,7 +90,7 @@
}

#displayWords, #about, #kittenCredit, #warning {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Helvetica Neue", sans-serif;
font-weight:200;
}

Expand Down Expand Up @@ -228,19 +227,6 @@
return decodeURIComponent(results[1].replace(/\+/g, " "));
}
</script>

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26983491-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>

</head>
<body onLoad="fetch_next_kitten()">
<div class="wrapper">
Expand Down Expand Up @@ -291,6 +277,18 @@ <h2>About</h2>
<p><a class="hide" onClick="$('#about').slideUp()">Hide</a></p>
<img src="" id="nextKitten"/>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26983491-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>


</body>
</html>
</html>

0 comments on commit 75647ad

Please sign in to comment.