weblab-instrument
Version:
communication with instrument through usb
40 lines (37 loc) • 1.21 kB
HTML
<html>
<head>
<title>Hello World!</title>
<script src='js/jquery/jquery.js'></script>
<script src='js/jquery/jquery.min.js'></script>
<script src='react/react-0.13.3.js'></script>
<script src='semantic/dist/semantic.min.js'></script>
<link rel='stylesheet' href='semantic/dist/semantic.min.css'>
<link rel='stylesheet' href='css/app.min.css'>
<script src='js/jquery.knob.min.js'></script>
<script language='javascript' type='text/javascript' src='js/flot/jquery.flot.js'></script>
</head>
<body>
<div id='app-view'></div>
<script>var electronRequire = require;</script>
<script src='js/app.min.js'></script>
<script type='text/javascript'>
$(document)
.ready(function(){
$('.ui.menu .dropdown')
.dropdown({
delay: {
show : 100,
hide : 300,
touch : 50
},
transition: 'drop',
// onChange:function(value, text, $choice){
// console.log(value);
// },
on: 'hover'
});
});
</script>
</body>
</html>