Residual JSHint fixes in common.js and edit-comments.js.

see #25912, #25979.

Built from https://develop.svn.wordpress.org/trunk@26208


git-svn-id: http://core.svn.wordpress.org/trunk@26116 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-11-15 06:37:09 +00:00
parent c87330dc5c
commit d7423a466e
4 changed files with 13 additions and 11 deletions

View File

@ -691,13 +691,15 @@ var moby6 = {
$( document ).ready( $.proxy( moby6.init, moby6 ) ); $( document ).ready( $.proxy( moby6.init, moby6 ) );
// make Windows 8 devices playing along nicely // make Windows 8 devices playing along nicely
if ( '-ms-user-select' in document.documentElement.style && navigator.userAgent.match(/IEMobile\/10\.0/) ) { (function(){
var msViewportStyle = document.createElement( 'style' ); if ( '-ms-user-select' in document.documentElement.style && navigator.userAgent.match(/IEMobile\/10\.0/) ) {
msViewportStyle.appendChild( var msViewportStyle = document.createElement( 'style' );
document.createTextNode( '@-ms-viewport{width:auto!important}' ) msViewportStyle.appendChild(
); document.createTextNode( '@-ms-viewport{width:auto!important}' )
document.getElementsByTagName( 'head' )[0].appendChild( msViewportStyle ); );
} document.getElementsByTagName( 'head' )[0].appendChild( msViewportStyle );
}
})();
// internal use // internal use
$(document).bind( 'wp_CloseOnEscape', function( e, data ) { $(document).bind( 'wp_CloseOnEscape', function( e, data ) {

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
/* global adminCommentsL10n, thousandsSeparator, list_args, QTags, ajaxurl, wpAjax, commentReply */ /* global adminCommentsL10n, thousandsSeparator, list_args, QTags, ajaxurl, wpAjax */
var setCommentsList, theList, theExtraList, var setCommentsList, theList, theExtraList, commentReply,
toggleWithKeyboard = false; toggleWithKeyboard = false;
(function($) { (function($) {

File diff suppressed because one or more lines are too long