Skip to content

Commit 70179f3

Browse files
committed
latest
1 parent 67df4d3 commit 70179f3

5 files changed

Lines changed: 47 additions & 0 deletions

File tree

cordova/RoboPlatform/ILab-3.9.apk

7.87 MB
Binary file not shown.

cordova/android.apk

1.73 MB
Binary file not shown.

cordova/managerapp.htm

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<script type='text/javascript' src='http://klab.web-manufacture.net/cordova/managerapp.js'></script>
2+
<include url='http://services.web-manufacture.net/UI/toolbars.htm'></include>
3+
<div id="Toolbar" class="toolbar fixed">
4+
<div class="menuitem save" tooltip="Сохранить" icon="http://system.web-manufacture.net/Images/save-mini.png" onclick="Editor.SaveFile();" >
5+
</div>
6+
<div class="menuitem history" tooltip="История сохранений" icon="http://cdn1.iconfinder.com/data/icons/softwaredemo/PNG/32x32/Hourglass.png" onclick="Editor.ShowHistory();">
7+
</div>
8+
<div class="menuitem reload" tooltip="Reload" icon="http://cdn1.iconfinder.com/data/icons/humility-icons-MERGE/24x24/stock/gtk-refresh.png" onclick="reload();">
9+
</div>
10+
</div>
11+
<div class='header'>Your -- Devices adqwdqwdqwd qwdqwdqwd :</div>
12+
<div id='Content' class="content">
13+
14+
</div>

cordova/managerapp.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
DOM("#Content").onclick = function(){
3+
//window.location = window.location;
4+
}
5+
6+
function list(){
7+
bluetoothSerial.list(
8+
function success(list){
9+
DOM("#Content").textContent = JSON.stringify(list);
10+
},
11+
function failure (msg){
12+
DOM("#Content").textContent = "looking error! " + msg;
13+
});
14+
};
15+
16+
setTimeout(function() {
17+
//C.Process(DOM("#Main"), "ui-processing");
18+
list();
19+
}, 100);

cordova/test.htm

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<script src="http://services.web-manufacture.net/Base/v1.5?join=true" type="text/javascript"></script>
5+
<link href="http://services.web-manufacture.net/Styles/System.default.css" rel="stylesheet">
6+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
7+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
8+
</head>
9+
<body>
10+
<include url="http://services.web-manufacture.net/System/ui.js"></include>
11+
12+
<div class='html-content' url='managerapp.htm'></div>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)