chipairon / i18nline-rails

Translation management engine for Rails applications.
MIT License
0 stars 0 forks source link

Inline feature opens a popup instead of new tab on Chrome #19

Open chipairon opened 10 years ago

chipairon commented 10 years ago

In a view with a missing translation, righ clickng it opens translation window in a popup instead of new tab.

This happens to me on Ubuntu with Chrome 26.0.1410.43 on Ubuntu.

Firefox 19.0.2 works as intended.

rubencaro commented 10 years ago

On Firefox 25 it works as expected only after granting popups for that site. The first one, the one to be explicitly granted, behaves exactly as Chrome 30.

chipairon commented 10 years ago

:scream:

@rubencaro, Any ideas on how to fix it?

rubencaro commented 10 years ago

We have no complains using simply window.open(url);. You are using window.open(url,'_blank');.

chipairon commented 10 years ago

Finally I figured it out: http://stackoverflow.com/a/20144171/676002 Don't forget to upvote! :sparkling_heart:

Will add it here soon