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

Tag support #25

Merged
merged 4 commits into from Jul 24, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Fixed indentation

  • Loading branch information
varshneyjayant committed Jul 20, 2015
commit edc9d5a54999a9f4d50c898a2055b60fafc266b2
@@ -94,12 +94,12 @@
return;
}

if(data.sendConsoleErrors !== undefined) {
setSendConsoleError(self, data.sendConsoleErrors);
if(data.sendConsoleErrors !== undefined) {
setSendConsoleError(self, data.sendConsoleErrors);
}


if(data.tag) {
if(data.tag) {
setTag(self, data.tag);
}

@@ -129,10 +129,10 @@
try {
//creating an asynchronous XMLHttpRequest
var xmlHttp = new XMLHttpRequest();
xmlHttp.open('POST', this.inputUrl, true); //true for asynchronous request
xmlHttp.send(JSON.stringify(data));
xmlHttp.open('POST', this.inputUrl, true); //true for asynchronous request
xmlHttp.send(JSON.stringify(data));

} catch (ex) {
} catch (ex) {
if (window && window.console && typeof window.console.log === 'function') {
console.log("Failed to log to loggly because of this exception:\n" + ex);
console.log("Failed log data:", data);
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.