1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

color and link tools options

This commit is contained in:
Kyle Spearrin
2016-09-19 22:48:42 -04:00
parent e5c58c12fe
commit 1b8df50f27
2 changed files with 19 additions and 9 deletions

View File

@@ -2,5 +2,15 @@
.module('bit.tools')
.controller('toolsController', function ($scope) {
$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' });
};
});