1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

tools share link to web vault

This commit is contained in:
Kyle Spearrin
2017-04-25 16:25:40 -04:00
parent 154427a0f3
commit e411170a90
4 changed files with 19 additions and 3 deletions

View File

@@ -3,8 +3,8 @@
.controller('toolsController', function ($scope, SweetAlert, i18nService) {
$scope.i18n = i18nService;
$scope.launchWebVault = function () {
chrome.tabs.create({ url: 'https://vault.bitwarden.com' });
$scope.launchWebVault = function (createOrg) {
chrome.tabs.create({ url: 'https://vault.bitwarden.com/#/' + (createOrg ? '?org=free' : '') });
};
$scope.launchiOS = function () {