SiteDog Object
The SiteDog object provides information about the Hardware Watchdog plugin.
Members Table
The following table lists the members provided by the SiteDog object.
|
Properties |
Description |
Enabled |
If the Hardware Watchdog is enabled. |
Name |
Name of this plugin. |
|
Remarks
This object is available through the collection Plugins.
Use the SiteDog object to determine if this plugin is enabled.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example determines if the Hardware Watchdog is enabled and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteDog").Enabled);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top