Make WordPress Core

Ticket #55332: edit-comments.js.patch

File edit-comments.js.patch, 581 bytes (added by LinuxArchitect, 3 years ago)

a quick hack patch that prevents the popup when not editing comments

  • edit-comments.js

    old new  
    12161216         */
    12171217        discardCommentChanges: function() {
    12181218                var editRow = $( '#replyrow' );
     1219               
     1220                // TheMC, stop worthless popup warnings
     1221                var editContent = $( '#replycontent', editRow ).val();
     1222                if ( this.originalContent == '' && typeof editContent == 'undefined' ) {
     1223                        console.error('skipping lost comment changes popup');
     1224                        return true;
     1225                }
    12191226
    12201227                if  ( this.originalContent === $( '#replycontent', editRow ).val() ) {
    12211228                        return true;