2011-05-05 21:51:32 +02:00
|
|
|
var showNotice, adminMenu, columns, validateForm, screenMeta;
|
2009-01-12 14:43:17 +01:00
|
|
|
(function($){
|
|
|
|
// sidebar admin menu
|
|
|
|
adminMenu = {
|
|
|
|
init : function() {
|
2009-08-18 11:53:37 +02:00
|
|
|
var menu = $('#adminmenu');
|
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
this.favorites();
|
2009-12-09 12:27:47 +01:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
$('#collapse-menu', menu).click(function(){
|
2009-04-04 19:07:31 +02:00
|
|
|
if ( $('body').hasClass('folded') ) {
|
2009-01-12 14:43:17 +01:00
|
|
|
adminMenu.fold(1);
|
2009-04-29 07:43:03 +02:00
|
|
|
deleteUserSetting( 'mfold' );
|
2009-01-12 14:43:17 +01:00
|
|
|
} else {
|
|
|
|
adminMenu.fold();
|
|
|
|
setUserSetting( 'mfold', 'f' );
|
2009-01-02 16:08:58 +01:00
|
|
|
}
|
2009-04-29 07:43:03 +02:00
|
|
|
return false;
|
2009-01-12 14:43:17 +01:00
|
|
|
});
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-08-30 03:12:26 +02:00
|
|
|
this.flyout( $('#adminmenu li.wp-has-submenu') );
|
|
|
|
|
|
|
|
this.fold( ! $('body').hasClass('folded') );
|
2009-01-02 16:08:58 +01:00
|
|
|
},
|
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
restoreMenuState : function() {
|
2011-04-07 20:45:22 +02:00
|
|
|
// (perhaps) needed for back-compat
|
2009-01-02 16:08:58 +01:00
|
|
|
},
|
|
|
|
|
2011-08-30 03:12:26 +02:00
|
|
|
flyout: function( el, unbind ) {
|
|
|
|
if ( unbind ) {
|
|
|
|
el.unbind(); // Unbind flyout
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
el.hoverIntent({
|
|
|
|
over: function(e){
|
|
|
|
var m, b, h, o, f;
|
|
|
|
m = $(this).find('.wp-submenu');
|
|
|
|
b = $(this).offset().top + m.height() + 1; // Bottom offset of the menu
|
|
|
|
h = $('#wpwrap').height(); // Height of the entire page
|
|
|
|
o = 60 + b - h;
|
|
|
|
f = $(window).height() + $(window).scrollTop() - 15; // The fold
|
|
|
|
if ( f < (b - o) ) {
|
|
|
|
o = b - f;
|
|
|
|
}
|
|
|
|
if ( o > 1 ) {
|
|
|
|
m.css({'marginTop':'-'+o+'px'});
|
|
|
|
} else if ( m.css('marginTop') ) {
|
|
|
|
m.css({'marginTop':''});
|
|
|
|
}
|
|
|
|
m.addClass('sub-open');
|
|
|
|
},
|
|
|
|
out: function(){
|
|
|
|
$(this).find('.wp-submenu').removeClass('sub-open');
|
|
|
|
},
|
|
|
|
timeout: 220,
|
|
|
|
sensitivity: 8,
|
|
|
|
interval: 100
|
2010-12-11 09:41:48 +01:00
|
|
|
});
|
2011-08-30 03:12:26 +02:00
|
|
|
},
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-08-30 03:12:26 +02:00
|
|
|
toggle : function() {
|
|
|
|
// Removed in 3.3.
|
|
|
|
// (perhaps) needed for back-compat
|
2009-01-12 14:43:17 +01:00
|
|
|
},
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-08-30 03:12:26 +02:00
|
|
|
fold : function( off ) {
|
|
|
|
var current = $('#adminmenu li.wp-has-current-submenu');
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-08-30 03:12:26 +02:00
|
|
|
$('body').toggleClass( 'folded', ! off );
|
|
|
|
$('body').toggleClass( 'expanded', off );
|
|
|
|
this.flyout( current, off );
|
|
|
|
|
|
|
|
// Remove any potentially remaining hoverIntent positioning.
|
|
|
|
if ( off )
|
|
|
|
current.find('.wp-submenu').css( 'marginTop', '0' );
|
2009-01-02 16:08:58 +01:00
|
|
|
},
|
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
favorites : function() {
|
2009-08-18 11:53:37 +02:00
|
|
|
$('#favorite-inside').width( $('#favorite-actions').width() - 4 );
|
|
|
|
$('#favorite-toggle, #favorite-inside').bind('mouseenter', function() {
|
|
|
|
$('#favorite-inside').removeClass('slideUp').addClass('slideDown');
|
|
|
|
setTimeout(function() {
|
|
|
|
if ( $('#favorite-inside').hasClass('slideDown') ) {
|
|
|
|
$('#favorite-inside').slideDown(100);
|
|
|
|
$('#favorite-first').addClass('slide-down');
|
|
|
|
}
|
|
|
|
}, 200);
|
|
|
|
}).bind('mouseleave', function() {
|
|
|
|
$('#favorite-inside').removeClass('slideDown').addClass('slideUp');
|
|
|
|
setTimeout(function() {
|
|
|
|
if ( $('#favorite-inside').hasClass('slideUp') ) {
|
|
|
|
$('#favorite-inside').slideUp(100, function() {
|
|
|
|
$('#favorite-first').removeClass('slide-down');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 300);
|
|
|
|
});
|
2009-01-02 16:08:58 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-18 11:53:37 +02:00
|
|
|
$(document).ready(function(){ adminMenu.init(); });
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
// show/hide/save table columns
|
|
|
|
columns = {
|
|
|
|
init : function() {
|
2010-11-13 18:21:40 +01:00
|
|
|
var that = this;
|
2010-11-13 16:58:23 +01:00
|
|
|
$('.hide-column-tog', '#adv-settings').click( function() {
|
2010-11-13 18:21:40 +01:00
|
|
|
var $t = $(this), column = $t.val();
|
2011-05-25 03:04:12 +02:00
|
|
|
if ( $t.prop('checked') )
|
2010-11-13 18:21:40 +01:00
|
|
|
that.checked(column);
|
|
|
|
else
|
|
|
|
that.unchecked(column);
|
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
columns.saveManageColumnsState();
|
2009-08-18 11:53:37 +02:00
|
|
|
});
|
2009-01-12 14:43:17 +01:00
|
|
|
},
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
saveManageColumnsState : function() {
|
|
|
|
var hidden = this.hidden();
|
2009-01-12 14:43:17 +01:00
|
|
|
$.post(ajaxurl, {
|
|
|
|
action: 'hidden-columns',
|
|
|
|
hidden: hidden,
|
2009-04-05 10:25:10 +02:00
|
|
|
screenoptionnonce: $('#screenoptionnonce').val(),
|
2009-01-12 14:43:17 +01:00
|
|
|
page: pagenow
|
|
|
|
});
|
2010-04-29 05:43:11 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
checked : function(column) {
|
|
|
|
$('.column-' + column).show();
|
2010-11-14 19:00:09 +01:00
|
|
|
this.colSpanChange(+1);
|
2010-04-29 05:43:11 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
unchecked : function(column) {
|
|
|
|
$('.column-' + column).hide();
|
2010-11-14 19:00:09 +01:00
|
|
|
this.colSpanChange(-1);
|
2010-04-29 05:43:11 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
hidden : function() {
|
|
|
|
return $('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
useCheckboxesForHidden : function() {
|
|
|
|
this.hidden = function(){
|
|
|
|
return $('.hide-column-tog').not(':checked').map(function() {
|
|
|
|
var id = this.id;
|
|
|
|
return id.substring( id, id.length - 5 );
|
|
|
|
}).get().join(',');
|
|
|
|
};
|
2010-11-14 19:00:09 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
colSpanChange : function(diff) {
|
2010-11-17 05:52:01 +01:00
|
|
|
var $t = $('table').find('.colspanchange'), n;
|
2010-11-14 19:00:09 +01:00
|
|
|
if ( !$t.length )
|
|
|
|
return;
|
2010-11-17 05:52:01 +01:00
|
|
|
n = parseInt( $t.attr('colspan'), 10 ) + diff;
|
2010-11-14 19:00:09 +01:00
|
|
|
$t.attr('colspan', n.toString());
|
2010-05-06 16:13:31 +02:00
|
|
|
}
|
2009-01-02 16:08:58 +01:00
|
|
|
}
|
2009-03-27 23:47:47 +01:00
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
$(document).ready(function(){columns.init();});
|
2009-03-27 23:47:47 +01:00
|
|
|
|
2009-07-01 10:12:39 +02:00
|
|
|
validateForm = function( form ) {
|
2009-11-19 11:24:14 +01:00
|
|
|
return !$( form ).find('.form-required').filter( function() { return $('input:visible', this).val() == ''; } ).addClass( 'form-invalid' ).find('input:visible').change( function() { $(this).closest('.form-invalid').removeClass( 'form-invalid' ); } ).size();
|
2009-07-01 10:12:39 +02:00
|
|
|
}
|
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
// stub for doing better warnings
|
|
|
|
showNotice = {
|
|
|
|
warn : function() {
|
|
|
|
var msg = commonL10n.warnDelete || '';
|
|
|
|
if ( confirm(msg) ) {
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
return false;
|
|
|
|
},
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2009-01-12 14:43:17 +01:00
|
|
|
note : function(text) {
|
|
|
|
alert(text);
|
|
|
|
}
|
|
|
|
};
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
screenMeta = {
|
|
|
|
links: {
|
|
|
|
'screen-options-link-wrap': 'screen-options-wrap',
|
|
|
|
'contextual-help-link-wrap': 'contextual-help-wrap'
|
|
|
|
},
|
|
|
|
init: function() {
|
|
|
|
$('.screen-meta-toggle').click( screenMeta.toggleEvent );
|
|
|
|
},
|
|
|
|
toggleEvent: function( e ) {
|
|
|
|
var panel;
|
|
|
|
e.preventDefault();
|
2009-05-25 01:47:49 +02:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
// Check to see if we found a panel.
|
|
|
|
if ( ! screenMeta.links[ this.id ] )
|
|
|
|
return;
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
panel = $('#' + screenMeta.links[ this.id ]);
|
2009-08-18 11:53:37 +02:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
if ( panel.is(':visible') )
|
|
|
|
screenMeta.close( panel, $(this) );
|
|
|
|
else
|
|
|
|
screenMeta.open( panel, $(this) );
|
|
|
|
},
|
|
|
|
open: function( panel, link ) {
|
|
|
|
$('.screen-meta-toggle').not( link ).css('visibility', 'hidden');
|
|
|
|
|
|
|
|
panel.slideDown( 'fast', function() {
|
|
|
|
link.addClass('screen-meta-active');
|
2009-01-02 16:08:58 +01:00
|
|
|
});
|
2011-05-05 21:51:32 +02:00
|
|
|
},
|
|
|
|
close: function( panel, link ) {
|
|
|
|
panel.slideUp( 'fast', function() {
|
|
|
|
link.removeClass('screen-meta-active');
|
|
|
|
$('.screen-meta-toggle').css('visibility', '');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
$(document).ready( function() {
|
2011-06-10 21:33:45 +02:00
|
|
|
var lastClicked = false, checks, first, last, checked, dropdown,
|
2011-07-11 23:53:29 +02:00
|
|
|
pageInput = $('input.current-page'), currentPage = pageInput.val();
|
2009-08-18 11:53:37 +02:00
|
|
|
|
2011-05-05 21:51:32 +02:00
|
|
|
// Move .updated and .error alert boxes. Don't move boxes designed to be inline.
|
|
|
|
$('div.wrap h2:first').nextAll('div.updated, div.error').addClass('below-h2');
|
|
|
|
$('div.updated, div.error').not('.below-h2, .inline').insertAfter( $('div.wrap h2:first') );
|
|
|
|
|
|
|
|
// Init screen meta
|
|
|
|
screenMeta.init();
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-10 22:36:12 +02:00
|
|
|
// User info dropdown.
|
|
|
|
dropdown = {
|
|
|
|
doc: $(document),
|
|
|
|
element: $('#user_info'),
|
|
|
|
open: function() {
|
|
|
|
if ( ! dropdown.element.hasClass('active') ) {
|
|
|
|
dropdown.element.addClass('active');
|
|
|
|
dropdown.doc.one( 'click', dropdown.close );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
close: function() {
|
|
|
|
dropdown.element.removeClass('active');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
dropdown.element.click( dropdown.open );
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
// check all checkboxes
|
2009-08-18 11:53:37 +02:00
|
|
|
$('tbody').children().children('.check-column').find(':checkbox').click( function(e) {
|
2009-01-02 16:08:58 +01:00
|
|
|
if ( 'undefined' == e.shiftKey ) { return true; }
|
|
|
|
if ( e.shiftKey ) {
|
|
|
|
if ( !lastClicked ) { return true; }
|
2009-08-18 11:53:37 +02:00
|
|
|
checks = $( lastClicked ).closest( 'form' ).find( ':checkbox' );
|
2009-01-02 16:08:58 +01:00
|
|
|
first = checks.index( lastClicked );
|
|
|
|
last = checks.index( this );
|
2011-05-25 03:04:12 +02:00
|
|
|
checked = $(this).prop('checked');
|
2009-01-02 16:08:58 +01:00
|
|
|
if ( 0 < first && 0 < last && first != last ) {
|
2011-05-25 03:04:12 +02:00
|
|
|
checks.slice( first, last ).prop( 'checked', function(){
|
2009-08-18 11:53:37 +02:00
|
|
|
if ( $(this).closest('tr').is(':visible') )
|
2011-05-25 03:04:12 +02:00
|
|
|
return checked;
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
return false;
|
2009-01-02 16:08:58 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lastClicked = this;
|
|
|
|
return true;
|
2009-08-18 11:53:37 +02:00
|
|
|
});
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2010-10-07 11:53:37 +02:00
|
|
|
$('thead, tfoot').find('.check-column :checkbox').click( function(e) {
|
2011-05-21 00:47:36 +02:00
|
|
|
var c = $(this).prop('checked'),
|
2009-08-18 11:53:37 +02:00
|
|
|
kbtoggle = 'undefined' == typeof toggleWithKeyboard ? false : toggleWithKeyboard,
|
|
|
|
toggle = e.shiftKey || kbtoggle;
|
2009-12-09 12:27:47 +01:00
|
|
|
|
2009-08-18 11:53:37 +02:00
|
|
|
$(this).closest( 'table' ).children( 'tbody' ).filter(':visible')
|
|
|
|
.children().children('.check-column').find(':checkbox')
|
2011-05-21 00:47:36 +02:00
|
|
|
.prop('checked', function() {
|
2009-08-18 11:53:37 +02:00
|
|
|
if ( $(this).closest('tr').is(':hidden') )
|
2011-05-21 00:47:36 +02:00
|
|
|
return false;
|
2009-01-02 16:08:58 +01:00
|
|
|
if ( toggle )
|
2011-05-21 00:47:36 +02:00
|
|
|
return $(this).prop( 'checked' );
|
2009-01-02 16:08:58 +01:00
|
|
|
else if (c)
|
2011-05-21 00:47:36 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
2009-01-02 16:08:58 +01:00
|
|
|
});
|
2009-08-18 11:53:37 +02:00
|
|
|
|
|
|
|
$(this).closest('table').children('thead, tfoot').filter(':visible')
|
|
|
|
.children().children('.check-column').find(':checkbox')
|
2011-05-21 00:47:36 +02:00
|
|
|
.prop('checked', function() {
|
2009-01-02 16:08:58 +01:00
|
|
|
if ( toggle )
|
2011-05-21 00:47:36 +02:00
|
|
|
return false;
|
2009-01-02 16:08:58 +01:00
|
|
|
else if (c)
|
2011-05-21 00:47:36 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
2009-01-02 16:08:58 +01:00
|
|
|
});
|
|
|
|
});
|
2009-08-18 11:53:37 +02:00
|
|
|
|
2009-05-03 19:06:29 +02:00
|
|
|
$('#default-password-nag-no').click( function() {
|
|
|
|
setUserSetting('default_password_nag', 'hide');
|
|
|
|
$('div.default-password-nag').hide();
|
|
|
|
return false;
|
|
|
|
});
|
2010-02-18 06:14:48 +01:00
|
|
|
|
|
|
|
// tab in textareas
|
2011-05-21 00:47:36 +02:00
|
|
|
$('#newcontent').bind('keydown.wpevent_InsertTab', function(e) {
|
2010-02-18 06:14:48 +01:00
|
|
|
if ( e.keyCode != 9 )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
var el = e.target, selStart = el.selectionStart, selEnd = el.selectionEnd, val = el.value, scroll, sel;
|
|
|
|
|
2010-03-02 12:49:06 +01:00
|
|
|
try {
|
|
|
|
this.lastKey = 9; // not a standard DOM property, lastKey is to help stop Opera tab event. See blur handler below.
|
|
|
|
} catch(err) {}
|
2010-02-18 06:14:48 +01:00
|
|
|
|
|
|
|
if ( document.selection ) {
|
|
|
|
el.focus();
|
|
|
|
sel = document.selection.createRange();
|
|
|
|
sel.text = '\t';
|
|
|
|
} else if ( selStart >= 0 ) {
|
|
|
|
scroll = this.scrollTop;
|
|
|
|
el.value = val.substring(0, selStart).concat('\t', val.substring(selEnd) );
|
|
|
|
el.selectionStart = el.selectionEnd = selStart + 1;
|
|
|
|
this.scrollTop = scroll;
|
|
|
|
}
|
2010-03-17 17:27:25 +01:00
|
|
|
|
2010-03-02 12:49:06 +01:00
|
|
|
if ( e.stopPropagation )
|
|
|
|
e.stopPropagation();
|
|
|
|
if ( e.preventDefault )
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
2010-03-17 17:27:25 +01:00
|
|
|
|
2011-05-21 00:47:36 +02:00
|
|
|
$('#newcontent').bind('blur.wpevent_InsertTab', function(e) {
|
2010-03-02 12:49:06 +01:00
|
|
|
if ( this.lastKey && 9 == this.lastKey )
|
|
|
|
this.focus();
|
2010-02-18 06:14:48 +01:00
|
|
|
});
|
2011-06-10 21:33:45 +02:00
|
|
|
|
|
|
|
if ( pageInput.length ) {
|
2011-07-11 23:53:29 +02:00
|
|
|
pageInput.closest('form').submit( function(e){
|
|
|
|
|
|
|
|
// Reset paging var for new filters/searches but not for bulk actions. See #17685.
|
|
|
|
if ( $('select[name="action"]').val() == -1 && $('select[name="action2"]').val() == -1 && pageInput.val() == currentPage )
|
2011-06-10 21:33:45 +02:00
|
|
|
pageInput.val('1');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-10-07 11:53:37 +02:00
|
|
|
});
|
2011-05-05 21:51:32 +02:00
|
|
|
|
2011-05-29 04:04:52 +02:00
|
|
|
// internal use
|
2011-05-29 07:07:32 +02:00
|
|
|
$(document).bind( 'wp_CloseOnEscape', function( e, data ) {
|
2011-05-29 04:04:52 +02:00
|
|
|
if ( typeof(data.cb) != 'function' )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( typeof(data.condition) != 'function' || data.condition() )
|
|
|
|
data.cb();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2011-05-21 00:47:36 +02:00
|
|
|
})(jQuery);
|