1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +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

@@ -229,19 +229,20 @@ function initUtilsService() {
};
UtilsService.prototype.inSidebar = function (theWindow) {
return theWindow.location.search && theWindow.location.search.indexOf('uilocation=sidebar') > -1;
return theWindow.location.search !== '' && theWindow.location.search.indexOf('uilocation=sidebar') > -1;
};
UtilsService.prototype.inTab = function (theWindow) {
return theWindow.location.search && theWindow.location.search.indexOf('uilocation=tab') > -1;
return theWindow.location.search !== '' && theWindow.location.search.indexOf('uilocation=tab') > -1;
};
UtilsService.prototype.inPopout = function (theWindow) {
return theWindow.location.search && theWindow.location.search.indexOf('uilocation=popout') > -1;
return theWindow.location.search !== '' && theWindow.location.search.indexOf('uilocation=popout') > -1;
};
UtilsService.prototype.inPopup = function (theWindow) {
return theWindow.location.search && theWindow.location.search.indexOf('uilocation=popup') > -1;
return theWindow.location.search === '' || theWindow.location.search.indexOf('uilocation=') === -1 ||
theWindow.location.search.indexOf('uilocation=popup') > -1;
};
function validIpAddress(ipString) {