1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

app path prefix for safari

This commit is contained in:
Kyle Spearrin
2019-08-22 16:05:19 -04:00
parent 57d9b19931
commit 0a2f413ab4
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 8a0d371d20...fbc7d6c2bc

View File

@@ -470,7 +470,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
}
function closeExistingAndOpenBar(type: string, typeData: any) {
let barPage = 'notification/bar.html';
let barPage = (isSafari ? 'app/' : '') + 'notification/bar.html';
switch (type) {
case 'info':
barPage = barPage + '?info=' + typeData.text;