git-svn-id: https://msi/svn/firstRepo/Management/trunk@49 0f545695-f87b-41b6-9a03-7f16563b5454

This commit is contained in:
2016-01-15 17:04:16 +00:00
parent 4b9fa8baa4
commit fc837ca592
70 changed files with 9932 additions and 4090 deletions
+3 -4
View File
@@ -1,11 +1,10 @@
var myManifest = {
Debug: false,
Debug: (window.location.port !== ""),
Name: "Il Management",
Version: "0.2.0.1",
Author: "Denis Ironi",
Settings: {
//DefaultURL: "http://localhost:8081/Service_Manut",
DefaultURL: "http://management.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",
Device:{
Width: (window.innerWidth > 0) ? window.innerWidth : screen.width,
@@ -14,6 +13,6 @@ var myManifest = {
},
Agent: (new UAParser()).getResult(),
getUrlArg: function(){
return (this.Debug ? this.Version + "." + (Math.random() * 1000) : this.Version);
return this.Version;
}
};