mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
angular
|
|
.module('bit.tools')
|
|
|
|
.controller('toolsController', function ($scope, SweetAlert) {
|
|
$scope.launchWebVault = function () {
|
|
chrome.tabs.create({ url: 'https://vault.bitwarden.com' });
|
|
};
|
|
|
|
$scope.launchiOS = function () {
|
|
chrome.tabs.create({ url: 'https://itunes.apple.com/us/app/bitwarden-free-password-manager/id1137397744?mt=8' });
|
|
};
|
|
|
|
$scope.launchAndroid = function () {
|
|
chrome.tabs.create({ url: 'https://play.google.com/store/apps/details?id=com.x8bit.bitwarden' });
|
|
};
|
|
|
|
$scope.launchImport = function () {
|
|
SweetAlert.swal({
|
|
title: 'Import Logins',
|
|
text: 'You can bulk import logins from the bitwarden.com web vault. Do you want to visit the website now?',
|
|
type: 'info',
|
|
showCancelButton: true,
|
|
confirmButtonText: 'Yes',
|
|
cancelButtonText: 'Cancel'
|
|
}, function (confirmed) {
|
|
if (confirmed) {
|
|
chrome.tabs.create({ url: 'https://vault.bitwarden.com' });
|
|
}
|
|
});
|
|
};
|
|
});
|