Files

20 lines
703 B
JavaScript

var myManifest = {
Debug: false,
Name: "Il Lievitario",
Version: "3.0.0.0",
Author: "Denis Ironi",
Settings: {
DefaultURL: "http://localhost:8081/Service",
//DefaultURL: "http://dev.gruppolapastamadre.it/Service",
JQueryVersion: "1.11.1",
JQueryMobileVersion: "1.4.5",
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);
}
};