diff options
author | thlo <smarttv640@gmail.com> | 2012-12-27 23:10:17 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2012-12-27 23:10:17 +0100 |
commit | 1682819891ed81ba3837f9746fe55e322066eb7f (patch) | |
tree | 6283c472c50af45860afa3fb06b19ab428b87cbb /smarttv-client/Javascript/Config.js | |
parent | 482d1be52352adbedb7a596137c5fe8c55491de8 (diff) | |
download | vdr-plugin-smarttvweb-1682819891ed81ba3837f9746fe55e322066eb7f.tar.gz vdr-plugin-smarttvweb-1682819891ed81ba3837f9746fe55e322066eb7f.tar.bz2 |
Correction of TotalPlaytime string.
Diffstat (limited to 'smarttv-client/Javascript/Config.js')
-rwxr-xr-x | smarttv-client/Javascript/Config.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/smarttv-client/Javascript/Config.js b/smarttv-client/Javascript/Config.js index 9e111d9..518c6e6 100755 --- a/smarttv-client/Javascript/Config.js +++ b/smarttv-client/Javascript/Config.js @@ -2,7 +2,7 @@ var Config = { cfgFileName : "",
XHRObj : null,
xmlDocument : null,
- serverUrl : "http://192.168.1.122:8000", // Will become the main URL for contacting the server. Form "http://<server>:port"
+ serverUrl : "", // Will become the main URL for contacting the server. Form "http://<server>:port"
serverAddr : "",
serverAddrDefault: "192.168.1.122:8000",
format :"has",
@@ -46,14 +46,13 @@ Config.init = function () { this.cfgFileName = curWidget.id + "/config.dta";
}
catch (e) {
- Main.log("curWidget.id does not exists. Is that a Samsung?");
+ Main.log("curWidget.id does not exists. Is that really a Samsung?");
return;
};
var fileSystemObj = new FileSystem();
if (fileSystemObj.isValidCommonPath(curWidget.id) == 0){
-// Display.showPopup ("First Launch of the Widget --> Launching Config Menu");
Main.log("First Launch of the Widget");
// should switch to the config screen here
var res = fileSystemObj.createCommonDir(curWidget.id);
|