/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: galaxyAbstractor
  • Date: 2013-04-05 15:01:08 UTC
  • mfrom: (19.3.3 GammaBear)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: galaxyabstractor@gmail.com-20130405150108-l8r90j6vvmvxq14v
Adams bugfixes

Show diffs side-by-side

added added

removed removed

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