fck_dialog_ie6.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  */
  21. (function()
  22. {
  23. // IE6 doens't handle absolute positioning properly (it is always in quirks
  24. // mode). This function fixes the sizes and positions of many elements that
  25. // compose the skin (this is skin specific).
  26. var fixSizes = window.DoResizeFixes = function()
  27. {
  28. var fckDlg = window.document.body ;
  29. for ( var i = 0 ; i < fckDlg.childNodes.length ; i++ )
  30. {
  31. var child = fckDlg.childNodes[i] ;
  32. switch ( child.className )
  33. {
  34. case 'contents' :
  35. child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 ) ; // -left -right
  36. child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 ) ; // -bottom -top
  37. break ;
  38. case 'blocker' :
  39. case 'cover' :
  40. child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 + 4 ) ; // -left -right + 4
  41. child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 + 4 ) ; // -bottom -top + 4
  42. break ;
  43. case 'tr' :
  44. child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
  45. break ;
  46. case 'tc' :
  47. child.style.width = Math.max( 0, fckDlg.clientWidth - 16 - 16 ) ;
  48. break ;
  49. case 'ml' :
  50. child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
  51. break ;
  52. case 'mr' :
  53. child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
  54. child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
  55. break ;
  56. case 'bl' :
  57. child.style.top = Math.max( 0, fckDlg.clientHeight - 51 ) ;
  58. break ;
  59. case 'br' :
  60. child.style.left = Math.max( 0, fckDlg.clientWidth - 30 ) ;
  61. child.style.top = Math.max( 0, fckDlg.clientHeight - 51 ) ;
  62. break ;
  63. case 'bc' :
  64. child.style.width = Math.max( 0, fckDlg.clientWidth - 30 - 30 ) ;
  65. child.style.top = Math.max( 0, fckDlg.clientHeight - 51 ) ;
  66. break ;
  67. }
  68. }
  69. }
  70. var closeButtonOver = function()
  71. {
  72. this.style.backgroundPosition = '-16px -687px' ;
  73. } ;
  74. var closeButtonOut = function()
  75. {
  76. this.style.backgroundPosition = '-16px -651px' ;
  77. } ;
  78. var fixCloseButton = function()
  79. {
  80. var closeButton = document.getElementById ( 'closeButton' ) ;
  81. closeButton.onmouseover = closeButtonOver ;
  82. closeButton.onmouseout = closeButtonOut ;
  83. }
  84. var onLoad = function()
  85. {
  86. fixSizes() ;
  87. fixCloseButton() ;
  88. window.attachEvent( 'onresize', fixSizes ) ;
  89. window.detachEvent( 'onload', onLoad ) ;
  90. }
  91. window.attachEvent( 'onload', onLoad ) ;
  92. })() ;