Skip to content

Instantly share code, notes, and snippets.

@dimoreira
Last active August 29, 2015 14:06
Show Gist options
  • Save dimoreira/0eed7339ab3b08e2ac9f to your computer and use it in GitHub Desktop.
Save dimoreira/0eed7339ab3b08e2ac9f to your computer and use it in GitHub Desktop.
Conditional to show rating modal
$ ->
url = window.location.href;
# example url: https://www.example.com.br/users/123
urlPattern = /https:\/\/www.url.com.br\/users\/\d+/g;
if (url.match(urlPattern))
console.log 'Url match: show modal'
else
console.log 'Don\'t match'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment