/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to Code Viewer Alt/index.js

  • Committer: Gustav Hartvigsson
  • Date: 2013-04-04 18:24:21 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130404182421-e8l692tsqroc1u05
Readded the file that Adam Ringhede removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
                scrollTo(destination);
16
16
        });
17
17
        var sidebar = $('#sidebar');
18
 
        $(window).bind('scroll', function() {
 
18
        $(document).bind('scroll', function() {
19
19
                sidebar.css("top", $(window).scrollTop());
20
20
        });
21
 
        $('.ieCSS3Fix, .group h2').each(function() {
22
 
                if(PIE.attach) {
23
 
                        PIE.attach(this);
24
 
                }
 
21
        $('.ieCSS3Fix, .menuLink').each(function() {
 
22
                PIE.attach(this);
25
23
        });
26
24
});
27
25