aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Prévost2011-10-29 07:56:51 -0400
committerJack Nagel2011-11-02 19:21:04 -0500
commit65bbbb92941756aebfa635543db92db49ef8bd5c (patch)
treeabdefb179f801bd2f2ffff637aae214e1070c76e
parentcaee95d8bda8df3c4cbbd9a09b0da09085b238c1 (diff)
downloadhomebrew-65bbbb92941756aebfa635543db92db49ef8bd5c.tar.bz2
Remove useless Javascript code
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--index.html3
-rw-r--r--js/global.js15
2 files changed, 0 insertions, 18 deletions
diff --git a/index.html b/index.html
index 978bd1207..832483560 100644
--- a/index.html
+++ b/index.html
@@ -7,9 +7,6 @@
<link rel="stylesheet" href="./css/screen.css" type="text/css" media="screen" />
<link rel="stylesheet" href="./css/fonts/chunkfive/chunkfive.css" type="text/css" media="screen" />
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript" src="./js/global.js"></script>
-
</head>
<body>
<div id="wrap">
diff --git a/js/global.js b/js/global.js
deleted file mode 100644
index 5a5515420..000000000
--- a/js/global.js
+++ /dev/null
@@ -1,15 +0,0 @@
-(function($) {
- $(function() {
- $('pre.overflow').bind('mouseover', function() {
- $(this).css({
- 'overflow' : 'auto',
- 'padding-bottom' : '8px'
- });
- }).bind('mouseout', function() {
- $(this).css({
- 'overflow' : 'hidden',
- 'padding-bottom' : '23px'
- });
- }).trigger('mouseout');
- });
-})(jQuery);