1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

remove query string from manifest popup

This commit is contained in:
Kyle Spearrin
2017-10-11 22:30:47 -04:00
parent 0656e732fe
commit 847c3df7df
3 changed files with 14 additions and 7 deletions

View File

@@ -33,8 +33,14 @@ angular
}
if (chrome.windows.create) {
href = href.replace('uilocation=popup', 'uilocation=popout').replace('uilocation=tab', 'uilocation=popout')
.replace('uilocation=sidebar', 'uilocation=popout');
if (href.indexOf('?uilocation=') > -1) {
href = href.replace('uilocation=popup', 'uilocation=popout').replace('uilocation=tab', 'uilocation=popout')
.replace('uilocation=sidebar', 'uilocation=popout');
}
else {
var hrefParts = href.split('#');
href = hrefParts[0] + '?uilocation=popout' + (hrefParts.length > 0 ? '#' + hrefParts[1] : '');
}
chrome.windows.create({
url: href,