20 lines
696 B
JavaScript
20 lines
696 B
JavaScript
var myManifest = {
|
|
Debug: false,
|
|
Name: "Il Lievitario",
|
|
Version: "2.2.3",
|
|
Author: "Denis Ironi",
|
|
Settings: {
|
|
//DefaultURL: "http://localhost:8081/Service",
|
|
DefaultURL: "http://app.gruppolapastamadre.it/Service",
|
|
JQueryVersion: "1.11.1",
|
|
JQueryMobileVersion: "1.4.3",
|
|
Device:{
|
|
Width: (window.innerWidth > 0) ? window.innerWidth : screen.width,
|
|
Height: (window.innerHeight > 0) ? window.innerHeight : screen.height
|
|
}
|
|
},
|
|
Agent: (new UAParser()).getResult(),
|
|
getUrlArg: function(){
|
|
return (this.Debug ? this.Version + "." + (Math.random() * 1000) : this.Version);
|
|
}
|
|
}; |