summaryrefslogtreecommitdiff
path: root/app/assets/javascripts
diff options
context:
space:
mode:
authorJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2016-04-21 07:27:27 -0400
committerJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2016-04-21 07:27:27 -0400
commitb3f4e8b218c380cc68213d1e59a6d992cd541099 (patch)
tree0f9f187a619fda2568d796cf7962f94c1171a585 /app/assets/javascripts
parent7f3a22a7b3e9e10b143e82e2c697fa2531992b5b (diff)
downloadgitlab-ce-b3f4e8b218c380cc68213d1e59a6d992cd541099.tar.gz
Revert "Merge branch 'sentry-js' into 'master' "
This reverts commit 0f309794e78243b1ee16ba6f1451dbb0752956c5, reversing changes made to 1e596fef1c42a1dd925636c48fea01be444dc3ab.
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/application.js.coffee1
-rw-r--r--app/assets/javascripts/raven_config.js.coffee44
2 files changed, 0 insertions, 45 deletions
diff --git a/app/assets/javascripts/application.js.coffee b/app/assets/javascripts/application.js.coffee
index 642e7429acf..5bac8eef1cb 100644
--- a/app/assets/javascripts/application.js.coffee
+++ b/app/assets/javascripts/application.js.coffee
@@ -55,7 +55,6 @@
#= require_tree .
#= require fuzzaldrin-plus
#= require cropper
-#= require raven
window.slugify = (text) ->
text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase()
diff --git a/app/assets/javascripts/raven_config.js.coffee b/app/assets/javascripts/raven_config.js.coffee
deleted file mode 100644
index d031a655abf..00000000000
--- a/app/assets/javascripts/raven_config.js.coffee
+++ /dev/null
@@ -1,44 +0,0 @@
-@raven =
- init: ->
- if gon.sentry_dsn?
- Raven.config(gon.sentry_dsn, {
- includePaths: [/gon.relative_url_root/]
- ignoreErrors: [
- # Random plugins/extensions
- 'top.GLOBALS',
- # See: http://blog.errorception.com/2012/03/tale-of-unfindable-js-error. html
- 'originalCreateNotification',
- 'canvas.contentDocument',
- 'MyApp_RemoveAllHighlights',
- 'http://tt.epicplay.com',
- 'Can\'t find variable: ZiteReader',
- 'jigsaw is not defined',
- 'ComboSearch is not defined',
- 'http://loading.retry.widdit.com/',
- 'atomicFindClose',
- # ISP "optimizing" proxy - `Cache-Control: no-transform` seems to
- # reduce this. (thanks @acdha)
- # See http://stackoverflow.com/questions/4113268
- 'bmi_SafeAddOnload',
- 'EBCallBackMessageReceived',
- # See http://toolbar.conduit.com/Developer/HtmlAndGadget/Methods/JSInjection.aspx
- 'conduitPage'
- ],
- ignoreUrls: [
- # Chrome extensions
- /extensions\//i,
- /^chrome:\/\//i,
- # Other plugins
- /127\.0\.0\.1:4001\/isrunning/i, # Cacaoweb
- /webappstoolbarba\.texthelp\.com\//i,
- /metrics\.itunes\.apple\.com\.edgesuite\.net\//i
- ]
- }).install()
-
- if gon.current_user_id
- Raven.setUserContext({
- id: gon.current_user_id
- })
-
-$ ->
- raven.init()