In earlier than 4.6, one could, with 1 click, edit all the properties of a link:

Now, thanks to the “all new and improved 4.6”, the dialog has been turned into this:

I understand that this makes it easier for MOST users but I seriously prefer the previous versions. Any idea / workaround?
To disable the inline link tool and revert it back to a pop-up screen instead, do the following:
In your child theme directory, add the following to your function.php
:
add_filter( 'mce_external_plugins', 'wpse_236590_link_editor' );
function wpse_236590_link_editor( $plugins ) {
$plugins['full_link_dialog'] = plugins_url( 'js/', __FILE__ ) . 'editor.js';
return $plugins;
}
Next create a directory inside your child theme folder called js
and create a file called editor.js
with the following code:
jQuery( function () {
tinymce.PluginManager.add( 'full_link_dialog', function ( editor, url ) {
if ( editor ) {
// Open the full link window instead of the inline linker
editor.onExecCommand.add( function( ed, cmd, ui, val ) {
if ( cmd == 'WP_Link' ) {
window.wpLink.open( editor.id );
}
} );
}
} );
} );