git-svn-id: https://msi/svn/firstRepo/WebClient/branches/NewRelease@33 0f545695-f87b-41b6-9a03-7f16563b5454

This commit is contained in:
2015-05-07 13:16:11 +00:00
parent d0d55ee8e5
commit 282ad76c48
79 changed files with 2416 additions and 1824 deletions
+13 -9
View File
@@ -1,20 +1,24 @@
var myManifest = {
Debug: false,
Debug: (window.location.port !== ""),
Name: "Il Lievitario",
Version: "2.5.0",
Version: "2.8.1.0",
Author: "Denis Ironi",
Settings: {
//DefaultURL: "http://localhost:8081/Service_Manut",
DefaultURL: "http://app.gruppolapastamadre.it/Service",
DefaultURL: (window.location.port === "" ? "http://" + window.location.host + "/Service": "http://" + window.location.hostname + ":" + window.location.port + "/Service_Manut"),
JQueryVersion: "1.11.1",
JQueryMobileVersion: "1.4.3",
Device:{
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);
Agent: (new UAParser()).getResult(),
getUrlArg: function () {
return this.Version;
},
getGPublicApiKey: function () {
if (myManifest.Debug)
return "AIzaSyBnai4MPffctg_ygCCincgjFUBQaytCH9k";
return "AIzaSyCwZVaNHV_z79Uull23XpBlP-5jTkzI3rE";
}
};