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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'webdoc/plugins/sidebar-plugin/viewport.js')
-rw-r--r--webdoc/plugins/sidebar-plugin/viewport.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/webdoc/plugins/sidebar-plugin/viewport.js b/webdoc/plugins/sidebar-plugin/viewport.js
deleted file mode 100644
index 2350601d..00000000
--- a/webdoc/plugins/sidebar-plugin/viewport.js
+++ /dev/null
@@ -1,52 +0,0 @@
-$(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 ();
-});
-