1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 02:23:44 +00:00

help and about settings pages

This commit is contained in:
Kyle Spearrin
2016-09-20 12:06:01 -04:00
parent 68b16ea565
commit 2fefdf8f6c
11 changed files with 109 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
angular
.module('bit.settings')
.controller('settingsHelpController', function ($scope) {
$scope.email = function () {
chrome.tabs.create({ url: 'mailto:hello@bitwarden.com' });
};
$scope.website = function () {
chrome.tabs.create({ url: 'https://vault.bitwarden.com' });
};
$scope.bug = function () {
chrome.tabs.create({ url: 'https://github.com/bitwarden/browser' });
};
});