diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-02-03 10:26:22 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-02-03 10:26:22 +0100 |
commit | 26e35c29fdd289fef30926b5f7133ee0d0fb0044 (patch) | |
tree | 124729c2e17f42dd373fcae26ac88251abb5d4d5 /server/sonar-web | |
parent | e7145ba1dfa1e1e50d86640abb98b425bbb5c295 (diff) | |
download | sonarqube-26e35c29fdd289fef30926b5f7133ee0d0fb0044.tar.gz sonarqube-26e35c29fdd289fef30926b5f7133ee0d0fb0044.zip |
SONAR-5966 fix the pb with return shortcut
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/coffee/issues/component-viewer/main.coffee | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/coffee/issues/workspace-list-view.coffee | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/coffee/issues/component-viewer/main.coffee b/server/sonar-web/src/main/coffee/issues/component-viewer/main.coffee index 09b1dc11b18..2035117b0ac 100644 --- a/server/sonar-web/src/main/coffee/issues/component-viewer/main.coffee +++ b/server/sonar-web/src/main/coffee/issues/component-viewer/main.coffee @@ -49,7 +49,7 @@ define [ @options.app.controller.selectNext() false - key 'left', 'componentViewer', => + key 'left,backspace', 'componentViewer', => @options.app.controller.closeComponentViewer() false diff --git a/server/sonar-web/src/main/coffee/issues/workspace-list-view.coffee b/server/sonar-web/src/main/coffee/issues/workspace-list-view.coffee index ebe82875367..7c429bc6cfd 100644 --- a/server/sonar-web/src/main/coffee/issues/workspace-list-view.coffee +++ b/server/sonar-web/src/main/coffee/issues/workspace-list-view.coffee @@ -33,7 +33,7 @@ define [ super - key 'right,return', 'list', => + key 'right', 'list', => selectedIssue = @collection.at @options.app.state.get 'selectedIndex' @options.app.controller.showComponentViewer selectedIssue return false |