|
@@ -107,18 +107,20 @@
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
|
|
<script src="script_msg.js"></script>
|
|
<script src="script_msg.js"></script>
|
|
<script>
|
|
<script>
|
|
|
|
+ var loaded_data = ''
|
|
function openNav() {
|
|
function openNav() {
|
|
document.getElementById("mySidenav").style.width = "250px";
|
|
document.getElementById("mySidenav").style.width = "250px";
|
|
|
|
|
|
$.get("http://www.choozmo.com:8888/history_input", function(data, status){
|
|
$.get("http://www.choozmo.com:8888/history_input", function(data, status){
|
|
console.log(data)
|
|
console.log(data)
|
|
|
|
+ loaded_data = data
|
|
for (var obj of data) {
|
|
for (var obj of data) {
|
|
var sideBAR = document.getElementById('mySidenav')
|
|
var sideBAR = document.getElementById('mySidenav')
|
|
var message = document.createElement('a')
|
|
var message = document.createElement('a')
|
|
var content = document.createTextNode(obj.name)
|
|
var content = document.createTextNode(obj.name)
|
|
message.id = obj.id
|
|
message.id = obj.id
|
|
message.setAttribute('href', "#")
|
|
message.setAttribute('href', "#")
|
|
- message.setAttribute('onclick', "openNav()")
|
|
|
|
|
|
+ message.setAttribute('onclick', "load_data(this.id)")
|
|
message.appendChild(content)
|
|
message.appendChild(content)
|
|
sideBAR.appendChild(message)
|
|
sideBAR.appendChild(message)
|
|
}
|
|
}
|
|
@@ -130,6 +132,9 @@
|
|
function closeNav() {
|
|
function closeNav() {
|
|
document.getElementById("mySidenav").style.width = "0";
|
|
document.getElementById("mySidenav").style.width = "0";
|
|
}
|
|
}
|
|
|
|
+ function load_data(id){
|
|
|
|
+ alert(id);
|
|
|
|
+ }
|
|
</script>
|
|
</script>
|
|
<style>
|
|
<style>
|
|
#myProgress {
|
|
#myProgress {
|