aboutsummaryrefslogtreecommitdiffstats
path: root/js/global.js
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 /js/global.js
parentcaee95d8bda8df3c4cbbd9a09b0da09085b238c1 (diff)
downloadhomebrew-65bbbb92941756aebfa635543db92db49ef8bd5c.tar.bz2
Remove useless Javascript code
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'js/global.js')
-rw-r--r--js/global.js15
1 files changed, 0 insertions, 15 deletions
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);