Commit a442cb1df09c069eaefa3d2c527742063e2fa484
1 parent
f7024ed4
Exists in
master
and in
1 other branch
kill undefined variable host in notifier.js
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
public/javascripts/notifier.js
... | ... | @@ -6,7 +6,7 @@ var Errbit = { |
6 | 6 | <notifier>\ |
7 | 7 | <name>errbit_notifier_js</name>\ |
8 | 8 | <version>2.0</version>\ |
9 | - <url>http://NOTIFIER_HOST</url>\ | |
9 | + <url>https://github.com/jdpace/errbit</url>\ | |
10 | 10 | </notifier>\ |
11 | 11 | <error>\ |
12 | 12 | <class>EXCEPTION_CLASS</class>\ |
... | ... | @@ -103,7 +103,6 @@ var Errbit = { |
103 | 103 | } |
104 | 104 | |
105 | 105 | xml = xml.replace('</request>', data + '</request>') |
106 | - .replace('NOTIFIER_HOST', host) | |
107 | 106 | .replace('REQUEST_URL', url) |
108 | 107 | .replace('REQUEST_ACTION', action) |
109 | 108 | .replace('REQUEST_COMPONENT', component); | ... | ... |