Fix JSHint errors in media-upload.js.

props iblamefish.
fixes #26023.


git-svn-id: https://develop.svn.wordpress.org/trunk@26196 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-11-15 04:52:12 +00:00
parent caf4f48e31
commit 5a2af56620
1 changed files with 6 additions and 5 deletions

View File

@ -1,8 +1,9 @@
/* global tinymce, QTags, tb_remove */
// send html to the post editor // send html to the post editor
var wpActiveEditor; var wpActiveEditor, send_to_editor;
function send_to_editor(h) { send_to_editor = function(h) {
var ed, mce = typeof(tinymce) != 'undefined', qt = typeof(QTags) != 'undefined'; var ed, mce = typeof(tinymce) != 'undefined', qt = typeof(QTags) != 'undefined';
if ( !wpActiveEditor ) { if ( !wpActiveEditor ) {
@ -42,8 +43,8 @@ function send_to_editor(h) {
document.getElementById(wpActiveEditor).value += h; document.getElementById(wpActiveEditor).value += h;
} }
try{tb_remove();}catch(e){}; try{tb_remove();}catch(e){}
} };
// thickbox settings // thickbox settings
var tb_position; var tb_position;
@ -60,7 +61,7 @@ var tb_position;
tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'}); tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
if ( typeof document.body.style.maxWidth != 'undefined' ) if ( typeof document.body.style.maxWidth != 'undefined' )
tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'}); tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
}; }
return $('a.thickbox').each( function() { return $('a.thickbox').each( function() {
var href = $(this).attr('href'); var href = $(this).attr('href');