Make WordPress Core

Ticket #39276: 39276.patch

File 39276.patch, 610 bytes (added by iseuldebot, 8 years ago)
  • src/wp-includes/js/wplink.js

     
    302302                getAttrs: function() {
    303303                        wpLink.correctURL();
    304304
    305                         var attrs = {
    306                                 href: $.trim( inputs.url.val() )
     305                        return {
     306                                href: $.trim( inputs.url.val() ),
     307                                target: inputs.openInNewTab.prop( 'checked' ) ? '_blank' : null
    307308                        };
    308 
    309                         if ( inputs.openInNewTab.prop( 'checked' ) ) {
    310                                 attrs.target = '_blank';
    311                         }
    312 
    313                         return attrs;
    314309                },
    315310
    316311                buildHtml: function(attrs) {