Changeset 10427
- Timestamp:
- 01/24/2009 11:57:15 AM (16 years ago)
- Location:
- branches/2.7/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.7/wp-includes/js/thickbox/thickbox.css
r9842 r10427 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; -
branches/2.7/wp-includes/js/thickbox/thickbox.js
r7325 r10427 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 } -
branches/2.7/wp-includes/script-loader.php
r10170 r10427 104 104 $scripts->add( 'jquery-hotkeys', '/wp-includes/js/jquery/jquery.hotkeys.js', array('jquery'), '0.0.2' ); 105 105 $scripts->add( 'jquery-table-hotkeys', '/wp-includes/js/jquery/jquery.table-hotkeys.js', array('jquery', 'jquery-hotkeys'), '20081128' ); 106 $scripts->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.js', array('jquery'), '3.1-200 80430');106 $scripts->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.js', array('jquery'), '3.1-20090123'); 107 107 $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', false, '2.2.0-20081031'); 108 108 $scripts->add( 'swfupload-degrade', '/wp-includes/js/swfupload/plugins/swfupload.graceful_degradation.js', array('swfupload'), '2.2.0-20081031');
Note: See TracChangeset
for help on using the changeset viewer.