-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
414b009
commit d453287
Showing
9 changed files
with
156 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,47 @@ | ||
<html> | ||
<title>FHEM</title> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<meta name="fhem-host" content="localhost"> | ||
<meta name="fhem-port" content="7072"> <!-- FHEM must provide Telnet service --> | ||
<meta name="widget_base_width" content="116"> | ||
<meta name="widget_base_height" content="131"> | ||
|
||
<!-- | ||
/* FHEM tablet ui */ | ||
/* | ||
* Just another dashboard for FHEM | ||
* | ||
* Version: 1.1.0 | ||
* Requires: jQuery v1.7+, font-awesome, jquery.gridster, jquery.toast | ||
* URL: https://github.com/knowthelist/fhem-tablet-ui | ||
* | ||
* Copyright (c) 2015 Mario Stephan <[email protected]> | ||
* Under MIT License (http://www.opensource.org/licenses/mit-license.php) | ||
* | ||
* - create a new folder named 'tablet' in /<fhem-path>/www | ||
* - copy all files incl. sub folders into /<fhem-path>/www/tablet | ||
* - add 'define tablet_ui HTTPSRV tablet ./www/tablet Tablet Frontend' in fhem.cfg | ||
* - Tadaaa! A new fhem ui in http://<fhem-url>:8083/fhem/tablet/ | ||
*/ | ||
--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<meta name="widget_base_width" content="116"> | ||
<meta name="widget_base_height" content="131"> | ||
|
||
<link rel="stylesheet" href="/fhem/tablet/lib/jquery.gridster.min.css" /> | ||
<link rel="stylesheet" href="/fhem/tablet/css/fhem-tablet-ui.css" /> | ||
<link rel="stylesheet" href="/fhem/tablet/lib/font-awesome.min.css" /> | ||
<link rel="stylesheet" href="/fhem/tablet/lib/jquery.toast.min.css" /> | ||
|
||
<script type="text/javascript" src="/fhem/pgm2/jquery.min.js"></script> | ||
<script type="text/javascript" src="/fhem/tablet/lib/jquery.gridster.min.js"></script> | ||
<script type="text/javascript" src="/fhem/pgm2/jquery.knob.min.js"></script> | ||
<script type="text/javascript" src="/fhem/tablet/lib/jquery.toast.min.js"></script> | ||
<script type="text/javascript" src="/fhem/tablet/lib/fa-multi-button.min.js"></script> | ||
<script type="text/javascript" src="/fhem/tablet/js/fhem-tablet-ui.js"></script> | ||
|
||
<!-- Enable this lines for usage with WebViewControl --><!-- | ||
<script type="text/javascript" src="/fhem/pgm2/cordova-2.3.0.js"></script> | ||
<script type="text/javascript" src="/fhem/js/webviewcontrol.js"></script> | ||
<script type="text/javascript">var wvcDevices = {'12345': 'Tablet'}; var wvcUserCssFile="webviewcontrol.css"</script> | ||
--><!-- End for WebViewControl --> | ||
</head> | ||
<body></body> | ||
|
||
<link rel="stylesheet" href="lib/jquery.gridster.min.css" /> | ||
<link rel="stylesheet" href="css/fhem-tablet-ui.css" /> | ||
<link rel="stylesheet" href="lib/font-awesome.min.css" /> | ||
<link rel="stylesheet" href="lib/jquery.toast.min.css" /> | ||
|
||
<script type="text/javascript" src="lib/jquery-1.10.2.min.js"></script> | ||
<script type="text/javascript" src="lib/jquery.gridster.min.js"></script> | ||
<script type="text/javascript" src="lib/jquery.knob.min.js"></script> | ||
<script type="text/javascript" src="lib/jquery.toast.min.js"></script> | ||
|
||
<script type="text/javascript" src="js/fa-multi-button.min.js"></script> | ||
<script type="text/javascript" src="js/fhem-tablet-ui.js"></script> | ||
|
||
<body> | ||
|
||
<div class="gridster"> | ||
<ul> | ||
|
@@ -122,8 +141,7 @@ | |
</div> | ||
</li> | ||
|
||
|
||
</ul> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.