Skip to content

Commit 5ca3d65

Browse files
committed
Merge pull request #555 from getsentry/user-feedback
Add User Feedback to docs
2 parents 5d9a646 + 85e35c2 commit 5ca3d65

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/usage.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,24 @@ event is sent, it will contain the string id.
183183
alert(Raven.lastEventId())
184184
185185
186+
User Feedback
187+
-------------
188+
189+
Often you might find yourself wanting to collect additional feedback from
190+
the user. Sentry supports this via an embeddable widget.
191+
192+
.. sourcecode:: javascript
193+
194+
try {
195+
handleRouteChange(...)
196+
} catch (err) {
197+
Raven.captureException(err);
198+
Raven.showReportDialog();
199+
}
200+
201+
For more details on this feature, see the :doc:`User Feedback guide <../../learn/user-feedback>`.
202+
203+
186204
Verify Raven Setup
187205
------------------
188206

0 commit comments

Comments
 (0)