Make WordPress Core

Changeset 26232


Ignore:
Timestamp:
11/15/2013 11:18:18 PM (11 years ago)
Author:
nacin
Message:

Fix JSHint errors in three files.

props tommcfarlin.
fixes #25942, #25943, #25944.

Location:
trunk/src/wp-admin/js
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/js/dashboard.js

    r26230 r26232  
    1 /* global pagenow */
     1/* global pagenow, ajaxurl, postboxes, wpActiveEditor:true */
    22var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad;
    33
     
    66    var welcomePanel = $('#welcome-panel'),
    77        welcomePanelHide = $('#wp_welcome_panel-hide'),
    8         updateWelcomePanel = function( visible ) {
     8        updateWelcomePanel = function( visible ) {
    99            $.post( ajaxurl, {
    1010                action: 'update-welcome-panel',
     
    1414        };
    1515
    16     if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') )
     16    if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') ) {
    1717        welcomePanel.removeClass('hidden');
     18    }
    1819
    1920    $('.welcome-panel-close, .welcome-panel-dismiss a', welcomePanel).click( function(e) {
     
    4950        if ( el ) {
    5051            el = el.toString();
    51             if ( $.inArray(el, ajaxWidgets) != -1 )
     52            if ( $.inArray(el, ajaxWidgets) !== -1 ) {
    5253                show(0, el);
     54            }
    5355        } else {
    5456            $.each( ajaxWidgets, show );
     
    9193            var input = $(this), prompt = $('#' + this.id + '-prompt-text');
    9294
    93             if ( '' === this.value )
     95            if ( '' === this.value ) {
    9496                prompt.removeClass('screen-reader-text');
     97            }
    9598
    9699            prompt.click( function() {
     
    100103
    101104            input.blur( function() {
    102                 if ( '' === this.value )
     105                if ( '' === this.value ) {
    103106                    prompt.removeClass('screen-reader-text');
     107                }
    104108            });
    105109
     
    110114
    111115        $('#quick-press').on( 'click focusin', function() {
    112             $(this).addClass("quickpress-open");
    113             $("#description-wrap, p.submit").slideDown(200);
     116            $(this).addClass('quickpress-open');
     117            $('#description-wrap, p.submit').slideDown(200);
    114118            wpActiveEditor = 'content';
    115119        });
     
    121125        $( this ).fadeOut().closest('.activity-block').find( 'li.hidden' ).fadeIn().removeClass( 'hidden' );
    122126        e.preventDefault();
    123     })
     127    });
    124128
    125129    // Dashboard columns
    126     jQuery(document).ready(function ($) {
     130    jQuery(document).ready(function () {
    127131        // Update main column count on load
    128132        updateColumnCount();
     
    135139    function updateColumnCount() {
    136140        var cols = 1,
    137             windowWidth = parseInt(jQuery(window).width());
    138         if (799 < windowWidth && 1299 > windowWidth)
     141            windowWidth = parseInt(jQuery(window).width(), 10);
     142
     143        if (799 < windowWidth && 1299 > windowWidth) {
    139144            cols = 2;
    140         if (1300 < windowWidth && 1799 > windowWidth)
     145        }
     146
     147        if (1300 < windowWidth && 1799 > windowWidth) {
    141148            cols = 3;
    142         if (1800 < windowWidth)
     149        }
     150
     151        if (1800 < windowWidth) {
    143152            cols = 4;
     153        }
    144154        jQuery('.metabox-holder').attr('class', jQuery('.metabox-holder').attr('class').replace(/columns-\d+/, 'columns-' + cols));
    145155    }
  • trunk/src/wp-admin/js/media-gallery.js

    r21592 r26232  
     1/* global ajaxurl */
    12jQuery(function($){
    23    $( 'body' ).bind( 'click.wp-gallery', function(e){
  • trunk/src/wp-admin/js/theme-preview.js

    r21592 r26232  
    1 
     1/* global tb_click */
    22var thickDims, tbWidth, tbHeight;
    33jQuery(document).ready(function($) {
     
    1313            $('#TB_iframeContent').width(w).height(h - 27);
    1414            tbWindow.css({'margin-left': '-' + parseInt((w / 2),10) + 'px'});
    15             if ( typeof document.body.style.maxWidth != 'undefined' )
     15            if ( typeof document.body.style.maxWidth !== 'undefined' ) {
    1616                tbWindow.css({'top':'30px','margin-top':'0'});
     17            }
    1718        }
    1819    };
    1920
    2021    thickDims();
    21     $(window).resize( function() { thickDims() } );
     22    $(window).resize( function() { thickDims(); } );
    2223
    2324    $('a.thickbox-preview').click( function() {
     
    2627        var alink = $(this).parents('.available-theme').find('.activatelink'), link = '', href = $(this).attr('href'), url, text;
    2728
    28         if ( tbWidth = href.match(/&tbWidth=[0-9]+/) )
     29        if ( tbWidth = href.match(/&tbWidth=[0-9]+/) ) {
    2930            tbWidth = parseInt(tbWidth[0].replace(/[^0-9]+/g, ''), 10);
    30         else
     31        } else {
    3132            tbWidth = $(window).width() - 90;
     33        }
    3234
    33         if ( tbHeight = href.match(/&tbHeight=[0-9]+/) )
     35        if ( tbHeight = href.match(/&tbHeight=[0-9]+/) ) {
    3436            tbHeight = parseInt(tbHeight[0].replace(/[^0-9]+/g, ''), 10);
    35         else
     37        } else {
    3638            tbHeight = $(window).height() - 60;
     39        }
    3740
    3841        if ( alink.length ) {
Note: See TracChangeset for help on using the changeset viewer.