diff --git a/src/app/config.js b/src/app/config.js index 338ffeb9092..dbc1b56ca42 100644 --- a/src/app/config.js +++ b/src/app/config.js @@ -242,6 +242,10 @@ angular }); }) .run(function ($rootScope, authService, $state) { + $rootScope.$on('$stateChangeSuccess', function () { + $('html, body').animate({ scrollTop: 0 }, 200); + }); + $rootScope.$on('$stateChangeStart', function (event, toState, toParams) { if (!toState.data || !toState.data.authorize) { if (toState.data && toState.data.skipAuthorize) { diff --git a/src/app/settings/views/settingsCreateOrganization.html b/src/app/settings/views/settingsCreateOrganization.html index 077e9769df9..f79ca373072 100644 --- a/src/app/settings/views/settingsCreateOrganization.html +++ b/src/app/settings/views/settingsCreateOrganization.html @@ -2,6 +2,10 @@

Create Organization

+

+ Organizations allow you to share parts of your vault with others as well as manage related users + for a specific entity (such as a company). +