diff options
| -rw-r--r-- | index.html | 3 | ||||
| -rw-r--r-- | js/global.js | 15 | 
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); | 
