Show Plugin Information thickbox title only when installing plugins, restore access to links on install plugins screens, some colors-fresh.css cleanup, fixes #9742

git-svn-id: http://svn.automattic.com/wordpress/trunk@11225 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz
2009-05-07 02:41:36 +00:00
parent 0ba921274d
commit e191104e4a
6 changed files with 65 additions and 75 deletions

View File

@@ -11,7 +11,7 @@ jQuery(document).ready(function($) {
tbWindow.css({'top':'20px','margin-top':'0'});
};
return $('a.thickbox').each( function() {
return $('#dashboard_plugins a.thickbox, #install-plugins a.thickbox').each( function() {
var href = $(this).attr('href');
if ( ! href )
return;
@@ -28,11 +28,6 @@ jQuery(document).ready(function($) {
});
/* Plugin install related JS*/
$('#install-plugins tbody.plugins tr').click( function() {
$(this).find('.action-links a.onclick').click();
return false;
});
$('#plugin-information #sidemenu a').click( function() {
var tab = $(this).attr('name');
//Flip the tab
@@ -43,4 +38,4 @@ jQuery(document).ready(function($) {
$('#section-' + tab).show();
return false;
});
});
});