Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mailto opens in _blank #102

Open
alexwasner opened this issue Nov 26, 2013 · 0 comments
Open

Mailto opens in _blank #102

alexwasner opened this issue Nov 26, 2013 · 0 comments
Labels

Comments

@alexwasner
Copy link
Contributor

Expected behavior:
User clicks href="mailto:[email protected]" and users email client opens.

Current behavior:
User clicks href="mailto:[email protected]" and new _blank window along side the users email client.

My current fix although I have not done extensive testing
in Application.js

      isMail = url.indexOf('mailto:') > -1 ? true : false;
      if(isMail){
        target = '_top';
      }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant