aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/coffee/issues/layout.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/coffee/issues/layout.coffee')
-rw-r--r--server/sonar-web/src/main/coffee/issues/layout.coffee8
1 files changed, 0 insertions, 8 deletions
diff --git a/server/sonar-web/src/main/coffee/issues/layout.coffee b/server/sonar-web/src/main/coffee/issues/layout.coffee
index 4e6d76e0fb6..a39d515384b 100644
--- a/server/sonar-web/src/main/coffee/issues/layout.coffee
+++ b/server/sonar-web/src/main/coffee/issues/layout.coffee
@@ -8,14 +8,6 @@ define [
$ = jQuery
- $.fn.isolatedScroll = ->
- @on 'wheel', (e) ->
- delta = -e.originalEvent.deltaY
- bottomOverflow = @scrollTop + $(@).outerHeight() - @scrollHeight >= 0
- topOverflow = @scrollTop <= 0
- e.preventDefault() if (delta < 0 && bottomOverflow) || (delta > 0 && topOverflow)
- @
-
class extends Marionette.Layout
template: Templates['issues-layout']