/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: Adam Ringhede
  • Date: 2013-04-04 15:04:31 UTC
  • mto: (12.2.3 lenasys)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: adamringhede@live.com-20130404150431-xn96iwb5gwjr5mf7
Adds PIE for CSS3 compatability issues with IE

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
//      window.onresize = fixMenuLeft;
6
6
        //$('#menu').offset({ top: menuTopOffset, left: $('#menu').offset().left });
7
7
        //window.onscroll = moveMenu;
8
 
        $('#menuHeader').click(toggleMenu);
 
8
        $('#menuHeader').click(toggleMenu);/*
 
9
        
 
10
        */
9
11
        $("a.menuLink").click(function(event) {
10
12
                event.preventDefault();
11
13
                event.stopPropagation();
16
18
        $(document).bind('scroll', function() {
17
19
                sidebar.css("top", $(window).scrollTop());
18
20
        });
 
21
        $('.ieCSS3Fix, .menuLink').each(function() {
 
22
                PIE.attach(this);
 
23
        });
19
24
});
20
25
 
21
26
function fixMenuLeft(ev) {