2009-01-12 14:43:17 +01:00
var theList , theExtraList , toggleWithKeyboard = false ;
2009-01-02 16:08:58 +01:00
( function ( $ ) {
setCommentsList = function ( ) {
var totalInput , perPageInput , pageInput , lastConfidentTime = 0 , dimAfter , delBefore , updateTotalCount , delAfter ;
2009-05-25 01:47:49 +02:00
2009-10-08 10:24:59 +02:00
totalInput = $ ( '.tablenav input[name="_total"]' , '#comments-form' ) ;
perPageInput = $ ( '.tablenav input[name="_per_page"]' , '#comments-form' ) ;
pageInput = $ ( '.tablenav input[name="_page"]' , '#comments-form' ) ;
2009-01-02 16:08:58 +01:00
dimAfter = function ( r , settings ) {
var c = $ ( '#' + settings . element ) ;
if ( c . is ( '.unapproved' ) )
c . find ( 'div.comment_status' ) . html ( '0' )
else
c . find ( 'div.comment_status' ) . html ( '1' )
$ ( 'span.pending-count' ) . each ( function ( ) {
2009-10-09 11:02:22 +02:00
var a = $ ( this ) , n , dif ;
n = a . html ( ) . replace ( /[^0-9]+/g , '' ) ;
2009-01-02 16:08:58 +01:00
n = parseInt ( n , 10 ) ;
if ( isNaN ( n ) ) return ;
2009-10-09 11:02:22 +02:00
dif = $ ( '#' + settings . element ) . is ( '.' + settings . dimClass ) ? 1 : - 1 ;
n = n + dif ;
2009-01-02 16:08:58 +01:00
if ( n < 0 ) { n = 0 ; }
2009-10-08 10:24:59 +02:00
a . closest ( '#awaiting-mod' ) [ 0 == n ? 'addClass' : 'removeClass' ] ( 'count-0' ) ;
2009-10-09 11:02:22 +02:00
updateCount ( a , n ) ;
dashboardTotals ( ) ;
2009-01-02 16:08:58 +01:00
} ) ;
} ;
// Send current total, page, per_page and url
2009-10-08 10:24:59 +02:00
delBefore = function ( settings , list ) {
2009-11-27 11:34:09 +01:00
var cl = $ ( settings . target ) . attr ( 'className' ) , id , el , n , h , a , author , action = false ;
2009-10-08 10:24:59 +02:00
settings . data . _total = totalInput . val ( ) || 0 ;
settings . data . _per _page = perPageInput . val ( ) || 0 ;
settings . data . _page = pageInput . val ( ) || 0 ;
2009-01-02 16:08:58 +01:00
settings . data . _url = document . location . href ;
2009-02-07 16:26:01 +01:00
2009-11-27 11:34:09 +01:00
if ( cl . indexOf ( ':trash=1' ) != - 1 )
action = 'trash' ;
else if ( cl . indexOf ( ':spam=1' ) != - 1 )
action = 'spam' ;
if ( action ) {
2009-10-08 10:24:59 +02:00
id = cl . replace ( /.*?comment-([0-9]+).*/ , '$1' ) ;
el = $ ( '#comment-' + id ) ;
2009-11-27 11:34:09 +01:00
note = $ ( '#' + action + '-undo-holder' ) . html ( ) ;
2009-10-08 10:24:59 +02:00
2010-04-18 09:37:45 +02:00
el . find ( '.check-column :checkbox' ) . attr ( 'checked' , '' ) ; // Uncheck the row so as not to be affected by Bulk Edits.
2009-11-03 09:28:59 +01:00
if ( el . siblings ( '#replyrow' ) . length && commentReply . cid == id )
commentReply . close ( ) ;
2009-10-08 10:24:59 +02:00
if ( el . is ( 'tr' ) ) {
n = el . children ( ':visible' ) . length ;
2009-11-26 05:37:39 +01:00
author = $ ( '.author strong' , el ) . text ( ) ;
2009-11-27 11:34:09 +01:00
h = $ ( '<tr id="undo-' + id + '" class="undo un' + action + '" style="display:none;"><td colspan="' + n + '">' + note + '</td></tr>' ) ;
2009-10-08 10:24:59 +02:00
} else {
2009-11-26 05:37:39 +01:00
author = $ ( '.comment-author' , el ) . text ( ) ;
2009-11-27 11:34:09 +01:00
h = $ ( '<div id="undo-' + id + '" style="display:none;" class="undo un' + action + '">' + note + '</div>' ) ;
2009-10-08 10:24:59 +02:00
}
el . before ( h ) ;
2009-11-27 11:34:09 +01:00
$ ( 'strong' , '#undo-' + id ) . text ( author + ' ' ) ;
a = $ ( '.undo a' , '#undo-' + id ) ;
a . attr ( 'href' , 'comment.php?action=un' + action + 'comment&c=' + id + '&_wpnonce=' + settings . data . _ajax _nonce ) ;
a . attr ( 'className' , 'delete:the-comment-list:comment-' + id + '::un' + action + '=1 vim-z vim-destructive' ) ;
$ ( '.avatar' , el ) . clone ( ) . prependTo ( '#undo-' + id + ' .' + action + '-undo-inside' ) ;
2009-10-08 10:24:59 +02:00
a . click ( function ( ) {
list . wpList . del ( this ) ;
2009-11-29 11:29:12 +01:00
$ ( '#undo-' + id ) . css ( { backgroundColor : '#ceb' } ) . fadeOut ( 350 , function ( ) {
2009-10-08 10:24:59 +02:00
$ ( this ) . remove ( ) ;
2009-11-03 09:28:59 +01:00
$ ( '#comment-' + id ) . css ( 'backgroundColor' , '' ) . fadeIn ( 300 , function ( ) { $ ( this ) . show ( ) } ) ;
2009-10-08 10:24:59 +02:00
} ) ;
return false ;
} ) ;
}
2009-01-02 16:08:58 +01:00
return settings ;
} ;
2009-10-08 10:24:59 +02:00
// Updates the current total (as displayed visibly)
2009-01-02 16:08:58 +01:00
updateTotalCount = function ( total , time , setConfidentTime ) {
2009-10-09 11:02:22 +02:00
if ( time < lastConfidentTime )
2009-01-02 16:08:58 +01:00
return ;
2009-10-09 11:02:22 +02:00
if ( setConfidentTime )
2009-01-02 16:08:58 +01:00
lastConfidentTime = time ;
2009-10-09 11:02:22 +02:00
totalInput . val ( total . toString ( ) ) ;
2009-01-02 16:08:58 +01:00
$ ( 'span.total-type-count' ) . each ( function ( ) {
2009-10-09 11:02:22 +02:00
updateCount ( $ ( this ) , total ) ;
2009-01-02 16:08:58 +01:00
} ) ;
} ;
2009-10-09 11:02:22 +02:00
function dashboardTotals ( n ) {
var dash = $ ( '#dashboard_right_now' ) , total , appr , totalN , apprN ;
n = n || 0 ;
if ( isNaN ( n ) || ! dash . length )
return ;
total = $ ( 'span.total-count' , dash ) ;
appr = $ ( 'span.approved-count' , dash ) ;
totalN = getCount ( total ) ;
2009-11-30 02:53:25 +01:00
totalN = totalN + n ;
apprN = totalN - getCount ( $ ( 'span.pending-count' , dash ) ) - getCount ( $ ( 'span.spam-count' , dash ) ) ;
updateCount ( total , totalN ) ;
updateCount ( appr , apprN ) ;
2009-10-09 11:02:22 +02:00
}
function getCount ( el ) {
var n = parseInt ( el . html ( ) . replace ( /[^0-9]+/g , '' ) , 10 ) ;
if ( isNaN ( n ) )
return 0 ;
return n ;
}
function updateCount ( el , n ) {
2009-11-13 06:39:17 +01:00
var n1 = '' ;
2009-10-09 11:02:22 +02:00
if ( isNaN ( n ) )
return ;
n = n < 1 ? '0' : n . toString ( ) ;
2009-11-13 06:39:17 +01:00
if ( n . length > 3 ) {
while ( n . length > 3 ) {
n1 = thousandsSeparator + n . substr ( n . length - 3 ) + n1 ;
n = n . substr ( 0 , n . length - 3 ) ;
}
n = n + n1 ;
}
2009-10-09 11:02:22 +02:00
el . html ( n ) ;
}
2009-01-02 16:08:58 +01:00
// In admin-ajax.php, we send back the unix time stamp instead of 1 on success
delAfter = function ( r , settings ) {
2009-11-27 11:34:09 +01:00
var total , pageLinks , N , untrash = $ ( settings . target ) . parent ( ) . is ( 'span.untrash' ) , unspam = $ ( settings . target ) . parent ( ) . is ( 'span.unspam' ) , spam , trash ;
2009-10-09 11:02:22 +02:00
function getUpdate ( s ) {
if ( $ ( settings . target ) . parent ( ) . is ( 'span.' + s ) )
return 1 ;
else if ( $ ( '#' + settings . element ) . is ( '.' + s ) )
return - 1 ;
return 0 ;
}
spam = getUpdate ( 'spam' ) ;
trash = getUpdate ( 'trash' ) ;
if ( untrash )
trash = - 1 ;
2009-11-27 11:34:09 +01:00
if ( unspam )
spam = - 1 ;
2009-10-08 10:24:59 +02:00
2009-01-02 16:08:58 +01:00
$ ( 'span.pending-count' ) . each ( function ( ) {
2009-10-09 11:02:22 +02:00
var a = $ ( this ) , n = getCount ( a ) , unapproved = $ ( '#' + settings . element ) . is ( '.unapproved' ) ;
2009-11-27 11:34:09 +01:00
if ( $ ( settings . target ) . parent ( ) . is ( 'span.unapprove' ) || ( ( untrash || unspam ) && unapproved ) ) { // we "deleted" an approved comment from the approved list by clicking "Unapprove"
2009-01-02 16:08:58 +01:00
n = n + 1 ;
2009-10-08 10:24:59 +02:00
} else if ( unapproved ) { // we deleted a formerly unapproved comment
n = n - 1 ;
2009-01-02 16:08:58 +01:00
}
if ( n < 0 ) { n = 0 ; }
2009-10-08 10:24:59 +02:00
a . closest ( '#awaiting-mod' ) [ 0 == n ? 'addClass' : 'removeClass' ] ( 'count-0' ) ;
2009-10-09 11:02:22 +02:00
updateCount ( a , n ) ;
dashboardTotals ( ) ;
2009-01-02 16:08:58 +01:00
} ) ;
$ ( 'span.spam-count' ) . each ( function ( ) {
2009-10-09 11:02:22 +02:00
var a = $ ( this ) , n = getCount ( a ) + spam ;
updateCount ( a , n ) ;
2009-01-02 16:08:58 +01:00
} ) ;
2009-07-30 15:39:34 +02:00
$ ( 'span.trash-count' ) . each ( function ( ) {
2009-10-09 11:02:22 +02:00
var a = $ ( this ) , n = getCount ( a ) + trash ;
updateCount ( a , n ) ;
2009-07-21 05:11:12 +02:00
} ) ;
2009-10-09 11:02:22 +02:00
if ( $ ( '#dashboard_right_now' ) . length ) {
2009-11-30 01:49:33 +01:00
N = trash ? - 1 * trash : 0 ;
dashboardTotals ( N ) ;
2009-10-09 11:02:22 +02:00
} else {
2009-11-29 11:29:12 +01:00
total = totalInput . val ( ) ? parseInt ( totalInput . val ( ) , 10 ) : 0 ;
total = total - spam - trash ;
if ( total < 0 )
total = 0 ;
2009-10-09 11:02:22 +02:00
if ( ( 'object' == typeof r ) && lastConfidentTime < settings . parsed . responses [ 0 ] . supplemental . time ) {
pageLinks = settings . parsed . responses [ 0 ] . supplemental . pageLinks || '' ;
if ( $ . trim ( pageLinks ) )
2009-10-08 10:24:59 +02:00
$ ( '.tablenav-pages' ) . find ( '.page-numbers' ) . remove ( ) . end ( ) . append ( $ ( pageLinks ) ) ;
2009-10-09 11:02:22 +02:00
else
2009-10-08 10:24:59 +02:00
$ ( '.tablenav-pages' ) . find ( '.page-numbers' ) . remove ( ) ;
2009-10-09 11:02:22 +02:00
2009-11-29 11:29:12 +01:00
updateTotalCount ( total , settings . parsed . responses [ 0 ] . supplemental . time , true ) ;
} else {
updateTotalCount ( total , r , false ) ;
}
2009-01-02 16:08:58 +01:00
}
2009-10-08 10:24:59 +02:00
if ( theExtraList . size ( ) == 0 || theExtraList . children ( ) . size ( ) == 0 || untrash ) {
2009-01-02 16:08:58 +01:00
return ;
}
theList . get ( 0 ) . wpList . add ( theExtraList . children ( ':eq(0)' ) . remove ( ) . clone ( ) ) ;
$ ( '#get-extra-comments' ) . submit ( ) ;
} ;
theExtraList = $ ( '#the-extra-comment-list' ) . wpList ( { alt : '' , delColor : 'none' , addColor : 'none' } ) ;
2009-10-18 07:59:03 +02:00
theList = $ ( '#the-comment-list' ) . wpList ( { alt : '' , delBefore : delBefore , dimAfter : dimAfter , delAfter : delAfter , addColor : 'none' } )
. bind ( 'wpListDelEnd' , function ( e , s ) {
var id = s . element . replace ( /[^0-9]+/g , '' ) ;
2009-01-02 16:08:58 +01:00
2009-11-27 11:34:09 +01:00
if ( s . target . className . indexOf ( ':trash=1' ) != - 1 || s . target . className . indexOf ( ':spam=1' ) != - 1 )
$ ( '#undo-' + id ) . fadeIn ( 300 , function ( ) { $ ( this ) . show ( ) } ) ;
2009-10-18 07:59:03 +02:00
} ) ;
2009-01-02 16:08:58 +01:00
} ;
commentReply = {
2009-11-03 09:28:59 +01:00
cid : '' ,
act : '' ,
2009-01-02 16:08:58 +01:00
init : function ( ) {
var row = $ ( '#replyrow' ) ;
$ ( 'a.cancel' , row ) . click ( function ( ) { return commentReply . revert ( ) ; } ) ;
2009-01-13 02:31:19 +01:00
$ ( 'a.save' , row ) . click ( function ( ) { return commentReply . send ( ) ; } ) ;
$ ( 'input#author, input#author-email, input#author-url' , row ) . keypress ( function ( e ) {
if ( e . which == 13 ) {
commentReply . send ( ) ;
e . preventDefault ( ) ;
return false ;
}
} ) ;
2009-01-02 16:08:58 +01:00
// add events
$ ( '#the-comment-list .column-comment > p' ) . dblclick ( function ( ) {
2009-01-12 14:43:17 +01:00
commentReply . toggle ( $ ( this ) . parent ( ) ) ;
} ) ;
2009-01-02 16:08:58 +01:00
$ ( '#doaction, #doaction2, #post-query-submit' ) . click ( function ( e ) {
if ( $ ( '#the-comment-list #replyrow' ) . length > 0 )
commentReply . close ( ) ;
} ) ;
2009-05-25 01:47:49 +02:00
2009-01-13 02:31:19 +01:00
this . comments _listing = $ ( '#comments-form > input[name="comment_status"]' ) . val ( ) || '' ;
2009-01-02 16:08:58 +01:00
} ,
addEvents : function ( r ) {
r . each ( function ( ) {
$ ( this ) . find ( '.column-comment > p' ) . dblclick ( function ( ) {
commentReply . toggle ( $ ( this ) . parent ( ) ) ;
} ) ;
} ) ;
} ,
toggle : function ( el ) {
if ( $ ( el ) . css ( 'display' ) != 'none' )
$ ( el ) . find ( 'a.vim-q' ) . click ( ) ;
} ,
revert : function ( ) {
if ( $ ( '#the-comment-list #replyrow' ) . length < 1 )
return false ;
$ ( '#replyrow' ) . fadeOut ( 'fast' , function ( ) {
commentReply . close ( ) ;
} ) ;
return false ;
} ,
close : function ( ) {
2009-11-03 09:28:59 +01:00
var c ;
if ( this . cid ) {
c = $ ( '#comment-' + this . cid ) ;
if ( this . act == 'edit-comment' )
c . fadeIn ( 300 , function ( ) { c . show ( ) } ) . css ( 'backgroundColor' , '' ) ;
$ ( '#replyrow' ) . hide ( ) ;
$ ( '#com-reply' ) . append ( $ ( '#replyrow' ) ) ;
$ ( '#replycontent' ) . val ( '' ) ;
$ ( 'input' , '#edithead' ) . val ( '' ) ;
$ ( '.error' , '#replysubmit' ) . html ( '' ) . hide ( ) ;
$ ( '.waiting' , '#replysubmit' ) . hide ( ) ;
if ( $ . browser . msie )
$ ( '#replycontainer, #replycontent' ) . css ( 'height' , '120px' ) ;
else
$ ( '#replycontainer' ) . resizable ( 'destroy' ) . css ( 'height' , '120px' ) ;
this . cid = '' ;
}
2009-01-02 16:08:58 +01:00
} ,
open : function ( id , p , a ) {
2009-11-03 09:28:59 +01:00
var t = this , editRow , rowData , act , h , c = $ ( '#comment-' + id ) ;
2009-01-02 16:08:58 +01:00
t . close ( ) ;
2009-11-03 09:28:59 +01:00
t . cid = id ;
2009-01-02 16:08:58 +01:00
2009-11-03 09:28:59 +01:00
$ ( 'td' , '#replyrow' ) . attr ( 'colspan' , $ ( 'table.widefat thead th:visible' ) . length ) ;
editRow = $ ( '#replyrow' ) ;
rowData = $ ( '#inline-' + id ) ;
2009-01-02 16:08:58 +01:00
act = t . act = ( a == 'edit' ) ? 'edit-comment' : 'replyto-comment' ;
$ ( '#action' , editRow ) . val ( act ) ;
$ ( '#comment_post_ID' , editRow ) . val ( p ) ;
$ ( '#comment_ID' , editRow ) . val ( id ) ;
if ( a == 'edit' ) {
$ ( '#author' , editRow ) . val ( $ ( 'div.author' , rowData ) . text ( ) ) ;
$ ( '#author-email' , editRow ) . val ( $ ( 'div.author-email' , rowData ) . text ( ) ) ;
$ ( '#author-url' , editRow ) . val ( $ ( 'div.author-url' , rowData ) . text ( ) ) ;
$ ( '#status' , editRow ) . val ( $ ( 'div.comment_status' , rowData ) . text ( ) ) ;
$ ( '#replycontent' , editRow ) . val ( $ ( 'textarea.comment' , rowData ) . val ( ) ) ;
$ ( '#edithead, #savebtn' , editRow ) . show ( ) ;
$ ( '#replyhead, #replybtn' , editRow ) . hide ( ) ;
2009-11-03 09:28:59 +01:00
h = c . height ( ) ;
2009-01-02 16:08:58 +01:00
if ( h > 220 )
if ( $ . browser . msie )
$ ( '#replycontainer, #replycontent' , editRow ) . height ( h - 105 ) ;
else
$ ( '#replycontainer' , editRow ) . height ( h - 105 ) ;
2009-11-03 09:28:59 +01:00
c . after ( editRow ) . fadeOut ( 'fast' , function ( ) {
$ ( '#replyrow' ) . fadeIn ( 300 , function ( ) { $ ( this ) . show ( ) } ) ;
2009-01-02 16:08:58 +01:00
} ) ;
} else {
$ ( '#edithead, #savebtn' , editRow ) . hide ( ) ;
$ ( '#replyhead, #replybtn' , editRow ) . show ( ) ;
2009-11-03 09:28:59 +01:00
c . after ( editRow ) ;
$ ( '#replyrow' ) . fadeIn ( 300 , function ( ) { $ ( this ) . show ( ) } ) ;
2009-01-02 16:08:58 +01:00
}
if ( ! $ . browser . msie )
$ ( '#replycontainer' ) . resizable ( {
handles : 's' ,
axis : 'y' ,
minHeight : 80 ,
stop : function ( ) {
$ ( '#replycontainer' ) . width ( 'auto' ) ;
}
} ) ;
setTimeout ( function ( ) {
var rtop , rbottom , scrollTop , vp , scrollBottom ;
2009-05-25 01:47:49 +02:00
2009-01-02 16:08:58 +01:00
rtop = $ ( '#replyrow' ) . offset ( ) . top ;
rbottom = rtop + $ ( '#replyrow' ) . height ( ) ;
scrollTop = window . pageYOffset || document . documentElement . scrollTop ;
vp = document . documentElement . clientHeight || self . innerHeight || 0 ;
scrollBottom = scrollTop + vp ;
if ( scrollBottom - 20 < rbottom )
window . scroll ( 0 , rbottom - vp + 35 ) ;
else if ( rtop - 20 < scrollTop )
window . scroll ( 0 , rtop - 35 ) ;
$ ( '#replycontent' ) . focus ( ) . keyup ( function ( e ) {
2009-11-03 09:28:59 +01:00
if ( e . which == 27 )
commentReply . revert ( ) ; // close on Escape
2009-01-02 16:08:58 +01:00
} ) ;
} , 600 ) ;
return false ;
} ,
send : function ( ) {
var post = { } ;
$ ( '#replysubmit .waiting' ) . show ( ) ;
$ ( '#replyrow input' ) . each ( function ( ) {
post [ $ ( this ) . attr ( 'name' ) ] = $ ( this ) . val ( ) ;
} ) ;
post . content = $ ( '#replycontent' ) . val ( ) ;
post . id = post . comment _post _ID ;
2009-01-13 02:31:19 +01:00
post . comments _listing = this . comments _listing ;
2009-01-02 16:08:58 +01:00
$ . ajax ( {
type : 'POST' ,
2009-10-20 19:45:12 +02:00
url : ajaxurl ,
2009-01-02 16:08:58 +01:00
data : post ,
success : function ( x ) { commentReply . show ( x ) ; } ,
error : function ( r ) { commentReply . error ( r ) ; }
} ) ;
return false ;
} ,
show : function ( xml ) {
var r , c , id , bg ;
if ( typeof ( xml ) == 'string' ) {
this . error ( { 'responseText' : xml } ) ;
return false ;
}
r = wpAjax . parseAjaxResponse ( xml ) ;
if ( r . errors ) {
this . error ( { 'responseText' : wpAjax . broken } ) ;
return false ;
}
r = r . responses [ 0 ] ;
c = r . data ;
2009-11-03 09:28:59 +01:00
id = '#comment-' + r . id ;
if ( 'edit-comment' == this . act )
$ ( id ) . remove ( ) ;
2009-01-02 16:08:58 +01:00
$ ( c ) . hide ( )
$ ( '#replyrow' ) . after ( c ) ;
2009-05-25 01:47:49 +02:00
2009-01-02 16:08:58 +01:00
this . revert ( ) ;
this . addEvents ( $ ( id ) ) ;
bg = $ ( id ) . hasClass ( 'unapproved' ) ? '#ffffe0' : '#fff' ;
$ ( id )
. animate ( { 'backgroundColor' : '#CCEEBB' } , 600 )
. animate ( { 'backgroundColor' : bg } , 600 ) ;
$ . fn . wpList . process ( $ ( id ) )
} ,
error : function ( r ) {
var er = r . statusText ;
$ ( '#replysubmit .waiting' ) . hide ( ) ;
if ( r . responseText )
er = r . responseText . replace ( /<.[^<>]*?>/g , '' ) ;
if ( er )
$ ( '#replysubmit .error' ) . html ( er ) . show ( ) ;
}
} ;
2009-01-12 14:43:17 +01:00
2009-01-02 16:08:58 +01:00
$ ( document ) . ready ( function ( ) {
var make _hotkeys _redirect , edit _comment , toggle _all , make _bulk ;
2009-01-12 14:43:17 +01:00
2009-02-07 16:26:01 +01:00
setCommentsList ( ) ;
2009-01-02 16:08:58 +01:00
commentReply . init ( ) ;
2009-02-09 23:46:27 +01:00
$ ( 'span.delete a.delete' ) . click ( function ( ) { return false ; } ) ;
2009-01-02 16:08:58 +01:00
if ( typeof QTags != 'undefined' )
ed _reply = new QTags ( 'ed_reply' , 'replycontent' , 'replycontainer' , 'more' ) ;
if ( typeof $ . table _hotkeys != 'undefined' ) {
make _hotkeys _redirect = function ( which ) {
return function ( ) {
var first _last , l ;
2009-05-25 01:47:49 +02:00
2009-01-02 16:08:58 +01:00
first _last = 'next' == which ? 'first' : 'last' ;
l = $ ( '.' + which + '.page-numbers' ) ;
if ( l . length )
window . location = l [ 0 ] . href . replace ( /\&hotkeys_highlight_(first|last)=1/g , '' ) + '&hotkeys_highlight_' + first _last + '=1' ;
}
} ;
2009-10-09 11:02:22 +02:00
2009-01-02 16:08:58 +01:00
edit _comment = function ( event , current _row ) {
window . location = $ ( 'span.edit a' , current _row ) . attr ( 'href' ) ;
} ;
2009-10-09 11:02:22 +02:00
2009-01-02 16:08:58 +01:00
toggle _all = function ( ) {
toggleWithKeyboard = true ;
2009-10-09 11:02:22 +02:00
$ ( 'input:checkbox' , '#cb' ) . click ( ) . attr ( 'checked' , '' ) ;
2009-01-02 16:08:58 +01:00
toggleWithKeyboard = false ;
2009-10-09 11:02:22 +02:00
} ;
2009-01-02 16:08:58 +01:00
make _bulk = function ( value ) {
2009-10-09 11:02:22 +02:00
return function ( ) {
var scope = $ ( 'select[name="action"]' ) ;
$ ( 'option[value=' + value + ']' , scope ) . attr ( 'selected' , 'selected' ) ;
$ ( '#comments-form' ) . submit ( ) ;
2009-01-02 16:08:58 +01:00
}
} ;
2009-10-09 11:02:22 +02:00
$ . table _hotkeys (
$ ( 'table.widefat' ) ,
2009-10-10 01:28:06 +02:00
[ 'a' , 'u' , 's' , 'd' , 'r' , 'q' , 'z' , [ 'e' , edit _comment ] , [ 'shift+x' , toggle _all ] ,
2009-10-09 11:02:22 +02:00
[ 'shift+a' , make _bulk ( 'approve' ) ] , [ 'shift+s' , make _bulk ( 'markspam' ) ] ,
[ 'shift+d' , make _bulk ( 'delete' ) ] , [ 'shift+t' , make _bulk ( 'trash' ) ] ,
[ 'shift+z' , make _bulk ( 'untrash' ) ] , [ 'shift+u' , make _bulk ( 'unapprove' ) ] ] ,
{ highlight _first : adminCommentsL10n . hotkeys _highlight _first , highlight _last : adminCommentsL10n . hotkeys _highlight _last ,
prev _page _link _cb : make _hotkeys _redirect ( 'prev' ) , next _page _link _cb : make _hotkeys _redirect ( 'next' ) }
2009-01-02 16:08:58 +01:00
) ;
}
} ) ;
} ) ( jQuery ) ;