Skip to content

Instantly share code, notes, and snippets.

Created March 24, 2014 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9750544 to your computer and use it in GitHub Desktop.
Save anonymous/9750544 to your computer and use it in GitHub Desktop.
diff --git a/browser/components/loop/content/js/client.js b/browser/components/loop/content/js/client.js
index c24eff1..5d9ba3e 100644
--- a/browser/components/loop/content/js/client.js
+++ b/browser/components/loop/content/js/client.js
@@ -41,7 +41,7 @@ loop.Client = (function($) {
return callUrlData.call_url;
}
- var req = $.post(endpoint, reqData, function(callUrlData) {
+ var req = $.post(endpoint + "?nickname=johndoe", reqData, function(callUrlData) {
try {
cb(null, validate(callUrlData));
} catch (err) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment