add host param to wallview endoint++

plugin-touch-ups
Moe 2024-09-20 17:09:02 -07:00
parent 0013cee542
commit 01db3ac7a9
1 changed files with 8 additions and 0 deletions

View File

@ -10,6 +10,14 @@ $(document).ready(function(){
var theWindow = $(window);
var lastWindowWidth = theWindow.width()
var lastWindowHeight = theWindow.height()
function getQueryString(){
var theObject = {}
location.search.substring(1).split('&').forEach(function(string){
var parts = string.split('=')
theObject[parts[0]] = parts[1]
})
return theObject
}
function featureIsActivated(showNotice){
if(userHasSubscribed){
return true