]> source.dussan.org Git - sonarqube.git/commit
SONAR-8697 Enable keyboard file navigation in Code page
authorWouter Admiraal <wouter.admiraal@sonarsource.com>
Thu, 17 Jan 2019 07:50:30 +0000 (08:50 +0100)
committersonartech <sonartech@sonarsource.com>
Mon, 11 Feb 2019 08:11:24 +0000 (09:11 +0100)
commitb6aeddaea44525337d14ed3566fcd5f08d1e671f
treec282b7f8b88b6c945e507465aa321e52fb4c37b9
parent8b7cd93d7a751fd49e8df3faef1cf03e320f470a
SONAR-8697 Enable keyboard file navigation in Code page
46 files changed:
server/sonar-docs/src/pages/user-guide/keyboard-shortcuts.md
server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx
server/sonar-web/src/main/js/app/components/nav/component/ComponentNavLicenseNotif.tsx
server/sonar-web/src/main/js/app/components/nav/component/ComponentNavMenu.tsx
server/sonar-web/src/main/js/apps/account/notifications/Notifications.tsx
server/sonar-web/src/main/js/apps/code/code.css
server/sonar-web/src/main/js/apps/code/components/App.tsx
server/sonar-web/src/main/js/apps/code/components/Component.tsx
server/sonar-web/src/main/js/apps/code/components/ComponentMeasure.tsx
server/sonar-web/src/main/js/apps/code/components/ComponentName.tsx
server/sonar-web/src/main/js/apps/code/components/Components.tsx
server/sonar-web/src/main/js/apps/code/components/Search.tsx
server/sonar-web/src/main/js/apps/code/components/SourceViewerWrapper.tsx
server/sonar-web/src/main/js/apps/code/components/__tests__/App-test.tsx
server/sonar-web/src/main/js/apps/code/components/__tests__/Components-test.tsx
server/sonar-web/src/main/js/apps/code/components/__tests__/__snapshots__/Components-test.tsx.snap
server/sonar-web/src/main/js/apps/coding-rules/components/RuleDetailsIssues.tsx
server/sonar-web/src/main/js/apps/component-measures/components/FilesCounter.tsx [deleted file]
server/sonar-web/src/main/js/apps/component-measures/components/MeasureContent.tsx
server/sonar-web/src/main/js/apps/component-measures/components/MeasureOverview.tsx
server/sonar-web/src/main/js/apps/component-measures/components/PageActions.tsx [deleted file]
server/sonar-web/src/main/js/apps/component-measures/components/__tests__/FilesCounter-test.tsx [deleted file]
server/sonar-web/src/main/js/apps/component-measures/components/__tests__/PageActions-test.tsx [deleted file]
server/sonar-web/src/main/js/apps/component-measures/components/__tests__/__snapshots__/FilesCounter-test.tsx.snap [deleted file]
server/sonar-web/src/main/js/apps/component-measures/components/__tests__/__snapshots__/PageActions-test.tsx.snap [deleted file]
server/sonar-web/src/main/js/apps/component-measures/style.css
server/sonar-web/src/main/js/apps/organizations/forSingleOrganization.tsx
server/sonar-web/src/main/js/components/docs/DocLink.tsx
server/sonar-web/src/main/js/components/hoc/__tests__/utils-test.ts [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/__tests__/withKeyboardNavigation-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/utils.ts [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/whenLoggedIn.tsx
server/sonar-web/src/main/js/components/hoc/withAppState.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/withCurrentUser.tsx
server/sonar-web/src/main/js/components/hoc/withKeyboardNavigation.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/withScrollTo.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx
server/sonar-web/src/main/js/components/ui/FilesCounter.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/ui/PageActions.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/ui/__tests__/FilesCounter-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/ui/__tests__/PageActions-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/components/ui/__tests__/__snapshots__/FilesCounter-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/ui/__tests__/__snapshots__/PageActions-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/components/withAppState.tsx [deleted file]
server/sonar-web/src/main/js/components/workspace/WorkspaceRuleDetails.tsx
server/sonar-web/src/main/js/helpers/testUtils.ts