Add this to your application.js.
$('a[data-popup]').on('click', function(e) { window.open($(this).attr('href')); e.preventDefault(); });
In the view, use something like:
= link_to( 'Create a new company', new_company_path, 'data-popup' => true )
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…