Welcome to mirror list, hosted at ThFree Co, Russian Federation.

viewport.js « sidebar-plugin « plugins « webdoc - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2350601d150a88d88dbf67be5276379f1bebd769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
$(function () {

	var sidebar_width = '251px';
//a hack for sizing our iframe correctly
        var getHeight = function () {
        <!--
        var viewportwidth;
        var viewportheight;
        // the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
        if (typeof window.innerWidth != 'undefined')
        {
                viewportwidth = window.innerWidth,
                viewportheight = window.innerHeight
        }
        // IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)
        else if (typeof document.documentElement != 'undefined'
                && typeof document.documentElement.clientWidth !=
                'undefined' && document.documentElement.clientWidth != 0)
        {
                viewportwidth = document.documentElement.clientWidth,
                viewportheight = document.documentElement.clientHeight
        }
        // older versions of IE
        else
        {
                viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
                viewportheight = document.getElementsByTagName('body')[0].clientHeight
        }
        return viewportheight;
        //-->
        }

        var main_part = $('#main_part');
        var content_frame = main_part.find('#content_frame');
        var content_frame_wrapper = main_part.find('#content_frame_wrapper');
	var resize_mainpart = function () {
                main_part.height (getHeight() - 75);
                main_part.children('#side').css ('height', '100%');
		main_part.children('#side').css ('width', sidebar_width);
                content_frame.css ('height', '97.5%');
		content_frame_wrapper.css('margin-left', sidebar_width);
        }

        var resizeTimer;
        $(window).resize(function() {
                clearTimeout(resizeTimer);
                resizeTimer = setTimeout(resize_mainpart, 100);
        });

        resize_mainpart ();
});