Skip to:
Content

bbPress.org

Changeset 5334


Ignore:
Timestamp:
04/03/2014 09:32:45 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Improve output of grunt jshint task. See #2578.

Location:
trunk/src/templates/default/js
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/templates/default/js/editor.js

    r5172 r5334  
    99    /* Tab from topic title */
    1010    jQuery( '#bbp_topic_title' ).bind( 'keydown.editor-focus', function(e) {
    11         if ( e.which !== 9 )
     11        if ( e.which !== 9 ) {
    1212            return;
     13        }
    1314
    1415        if ( !e.ctrlKey && !e.altKey && !e.shiftKey ) {
     
    3031    /* Shift + tab from topic tags */
    3132    jQuery( '#bbp_topic_tags' ).bind( 'keydown.editor-focus', function(e) {
    32         if ( e.which !== 9 )
     33        if ( e.which !== 9 ) {
    3334            return;
     35        }
    3436
    3537        if ( e.shiftKey && !e.ctrlKey && !e.altKey ) {
  • trunk/src/templates/default/js/forum.js

    r5324 r5334  
    1515                    response.content = bbpForumJS.generic_ajax_error;
    1616                }
    17                 alert( response.content );
     17                window.alert( response.content );
    1818            }
    1919        } );
  • trunk/src/templates/default/js/reply.js

    r4944 r5334  
    33        var t = this, div, reply = t.I(replyId), respond = t.I(respondId), cancel = t.I('bbp-cancel-reply-to-link'), parent = t.I('bbp_reply_to'), post = t.I('bbp_topic_id');
    44
    5         if ( ! reply || ! respond || ! cancel || ! parent )
     5        if ( ! reply || ! respond || ! cancel || ! parent ) {
    66            return;
     7        }
    78
    89        t.respondId = respondId;
     
    1718
    1819        reply.parentNode.insertBefore(respond);
    19         if ( post && postId )
     20        if ( post && postId ) {
    2021            post.value = postId;
     22        }
    2123        parent.value = parentId;
    2224        cancel.style.display = '';
     
    2527            var t = addReply, temp = t.I('bbp-temp-form-div'), respond = t.I(t.respondId);
    2628
    27             if ( ! temp || ! respond )
     29            if ( ! temp || ! respond ) {
    2830                return;
     31            }
    2932
    3033            t.I('bbp_reply_to').value = '0';
     
    3437            this.onclick = null;
    3538            return false;
    36         }
     39        };
    3740
    3841        try { t.I('bbp_reply_content').focus(); }
     
    4548        return document.getElementById(e);
    4649    }
    47 }
     50};
  • trunk/src/templates/default/js/topic.js

    r4549 r5334  
    1515                    response.content = bbpTopicJS.generic_ajax_error;
    1616                }
    17                 alert( response.content );
     17                window.alert( response.content );
    1818            }
    1919        } );
Note: See TracChangeset for help on using the changeset viewer.