62 lines
2.0 KiB
HTML
62 lines
2.0 KiB
HTML
<html>
|
|
|
|
<!-- these 4 files always have to be included -->
|
|
<link rel="stylesheet" type="text/css" href="../../lib/css/themes/jquery-ui/redmond/jquery-ui.min.css"/>
|
|
<link rel="stylesheet" type="text/css" href="../../lib/css/jquery.multiselect-1.13.css"/>
|
|
|
|
<script type="text/javascript" src="../../lib/js/jquery-1.11.1.min.js"></script>
|
|
<script type="text/javascript" src="../../socket.io/socket.io.js"></script>
|
|
<script type="text/javascript" src="../../lib/js/jquery-ui-1.10.3.full.min.js"></script>
|
|
|
|
<!-- these two file always have to be included -->
|
|
<link rel="stylesheet" type="text/css" href="../../css/adapter.css"/>
|
|
<script type="text/javascript" src="../../js/translate.js"></script>
|
|
<script type="text/javascript" src="../../js/adapter-settings.js"></script>
|
|
|
|
<style>
|
|
.table_header {
|
|
background-color: blue;
|
|
color: white;
|
|
}
|
|
.ip {
|
|
width: 150px;
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
<!-- you have to define 2 functions in the global scope: -->
|
|
<script type="text/javascript">
|
|
systemDictionary = {
|
|
"Fancyswitch Widgets settings": {
|
|
"en": "Fancyswitch Widgets settings",
|
|
"de": "Fancyswitch Widgets Einstellungen",
|
|
"ru": "Настройки Fancyswitch Widgets"
|
|
},
|
|
"There is nothing to setup": {
|
|
"en": "There is nothing to setup",
|
|
"de": "Es gibt nichts einzustellen",
|
|
"ru": "Нечего настраивать"
|
|
},
|
|
};
|
|
|
|
function load(settings, onChange) {
|
|
if (!settings) return;
|
|
|
|
onChange(false);
|
|
}
|
|
|
|
function save(callback) {
|
|
callback(null);
|
|
}
|
|
</script>
|
|
|
|
<div id="adapter-container">
|
|
|
|
<table><tr>
|
|
<td><img src="hqwidgets.png"></td>
|
|
<td style="padding-top: 20px;padding-left: 10px"><h3 class="translate">Fancyswitch Widgets settings</h3></td>
|
|
</tr></table>
|
|
|
|
<div class="translate">There is nothing to setup</h4>
|
|
</div>
|
|
</html>
|