We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d9a646 + 85e35c2 commit 5ca3d65Copy full SHA for 5ca3d65
docs/usage.rst
@@ -183,6 +183,24 @@ event is sent, it will contain the string id.
183
alert(Raven.lastEventId())
184
185
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
204
Verify Raven Setup
205
------------------
206
0 commit comments