diff options
author | thlo <t.lohmar@gmx.de> | 2013-04-05 17:43:54 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-04-05 17:43:54 +0200 |
commit | 0d3bb5c8d940b416ccc06a68a8ccfc35370fdbd4 (patch) | |
tree | 5e1b34165922afd5940e3ff566221fbd34d76155 /smarttv-client/Javascript/Network.js | |
parent | d5c26eb7a9c51e82be0ac41bd04f4433043776cd (diff) | |
download | vdr-plugin-smarttvweb-0d3bb5c8d940b416ccc06a68a8ccfc35370fdbd4.tar.gz vdr-plugin-smarttvweb-0d3bb5c8d940b416ccc06a68a8ccfc35370fdbd4.tar.bz2 |
Selection of audio tracks.
First version of web video (yt) support.
various bug fixes.
Diffstat (limited to 'smarttv-client/Javascript/Network.js')
-rwxr-xr-x | smarttv-client/Javascript/Network.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/smarttv-client/Javascript/Network.js b/smarttv-client/Javascript/Network.js index b4c0772..314dcca 100755 --- a/smarttv-client/Javascript/Network.js +++ b/smarttv-client/Javascript/Network.js @@ -2,6 +2,7 @@ var Network = { plugin : null,
ownMac : "",
ownGw : "",
+ ownIp : "",
isInited: false
};
@@ -12,9 +13,11 @@ Network.init = function () { if ((nw_type == 0) || (nw_type == 1)) {
this.ownMac = this.plugin.GetMAC(nw_type);
this.ownGw = this.plugin.GetGateway(nw_type);
+ this.ownIp = this.plugin.GetIP(nw_type);
}
Main.log( "ownMac= " + this.ownMac);
Main.log ("ownGw= " + this.ownGw);
+ Main.log ("ownIp= " + this.ownIp);
this.isInited = true;
}
catch (e) {
|