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

Investigate matching issue #2

Open
cowboy opened this issue May 18, 2011 · 1 comment
Open

Investigate matching issue #2

cowboy opened this issue May 18, 2011 · 1 comment

Comments

@cowboy
Copy link
Owner

cowboy commented May 18, 2011

While $.isUrlInternal('http://benalman.com/') returns true, $.isUrlInternal('http://benalman.com') (trailing slash omitted) returns false. Fix?

@mobilebilly
Copy link

looks like change the regular expression fixed the problem:

from:

var re = new RegExp( '^' + alt_hostname + '(.*)', 'i' ),
  pattern = '^(?:' + loc.protocol + ')?//'
    + loc.hostname.replace(re, alt_hostname + '$1').replace( /\\?\./g, '\\.' )
    + (loc.port ? ':' + loc.port : '') + '/';

to:

var re = new RegExp( '^' + alt_hostname + '(.*)', 'i' ),
  pattern = '^(?:' + loc.protocol + ')?//'
    + loc.hostname.replace(re, alt_hostname + '$1').replace( /\\?\./g, '\\.' )
    + (loc.port ? ':' + loc.port : '') + "(?:$|/)";

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants