Changeset 10428
- Timestamp:
- 01/24/2009 11:58:21 AM (16 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/thickbox/thickbox.css
r9842 r10428 34 34 .TB_overlayBG { 35 35 background-color:#000; 36 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; 36 37 filter:alpha(opacity=75); 37 38 -moz-opacity: 0.75; -
trunk/wp-includes/js/thickbox/thickbox.js
r10326 r10428 282 282 283 283 function tb_position() { 284 var isIE6 = typeof document.body.style.maxHeight === "undefined"; 284 285 jQuery("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'}); 285 if ( ! (jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6286 if ( ! isIE6 ) { // take away IE6 286 287 jQuery("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'}); 287 288 } -
trunk/wp-includes/script-loader.php
r10402 r10428 154 154 $scripts->add_data( 'jquery-table-hotkeys', 'group', 1 ); 155 155 156 $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-200 80430m');156 $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20090123'); 157 157 $scripts->add_data( 'thickbox', 'group', 1 ); 158 158
Note: See TracChangeset
for help on using the changeset viewer.