Make WordPress Core

Ticket #24716: 24716.patch

File 24716.patch, 1.1 KB (added by iseulde, 10 years ago)
  • src/wp-includes/js/media-models.js

     
    3131                } else if ( 'post' === attributes.frame && MediaFrame.Post ) {
    3232                        frame = new MediaFrame.Post( attributes );
    3333                } else if ( 'manage' === attributes.frame && MediaFrame.Manage ) {
    34                         frame = new MediaFrame.Manage( attributes ); 
     34                        frame = new MediaFrame.Manage( attributes );
    3535                } else if ( 'image' === attributes.frame && MediaFrame.ImageDetails ) {
    3636                        frame = new MediaFrame.ImageDetails( attributes );
    3737                } else if ( 'audio' === attributes.frame && MediaFrame.AudioDetails ) {
  • src/wp-includes/js/media-views.js

     
    20712071                        // after creating the wrapper view, load the actual editor via an ajax call
    20722072                        view.loadEditor();
    20732073
    2074                 },
     2074                }
    20752075        });
    20762076
    20772077        /**