Skip to content

Instantly share code, notes, and snippets.

@od3n
Forked from technoweenie/waldo.html.erb
Created December 11, 2013 13:08
Show Gist options
  • Save od3n/7910132 to your computer and use it in GitHub Desktop.
Save od3n/7910132 to your computer and use it in GitHub Desktop.
<% if logged_in? -%>
<script type="text/javascript">
function wheresWaldo(users) {
document.write("<p>Users on this page: ")
var links = []
users.forEach(function(user) {
var pieces = user.split('/')
links.push('<a href="/users/' + pieces[0] + '">' + pieces[1] + '</a>')
})
document.write(links.join(", ") + "</p>")
}
</script>
<script type="text/javascript" src="http://localhost:3456/track_and_list?callback=wheresWaldo&amp;name=<%= URI.escape("#{current_user.id}/#{current_user.name.split(" ").first}") %>&amp;location=<%= URI.escape(request.request_uri) %>"></script>
<% end -%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment