Skip to content

Commit d46a140

Browse files
committed
fix errors and added to-do list
1 parent 9eb7900 commit d46a140

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

apps/heatsuite/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,12 @@ HeatSuite uses icons from [Flaticon.com](https://www.flaticon.com) & [Freepik.co
6363

6464
## Research Using HeatSuite
6565

66-
Select publications below, a full list can be found [here]():
66+
A full list of peer-reviewed research and conference preceedings using HeatSuite can be found [here](https://heatsuitelabs.github.io/HeatSuiteDocs/research/)
6767

68-
Ravanelli N, Lefebvre K, Mornas A, & Gagnon D. *Evaluating compliance with HeatSuite for monitoring in-situ physiological and perceptual responses and personal environmental exposure*. npj-Digital Medicine.
68+
## To Do
69+
70+
* Finish Download All and Delete All functions on custom.html
71+
* Graphical User Interface for EMA and Task Development
6972

7073
## Creator
7174

apps/heatsuite/custom.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@
440440
var filename = file.replace(/\x01$/, '');
441441
element.insertAdjacentHTML('beforeend', `<tr id="file-${filename}"><td>${filename}</td><td><i class="icon icon-download" onclick="DownloadSingleFile('${filename}');"></i>&nbsp; <i class="icon icon-delete" onclick="deleteFile('${filename}');"></i></td></tr>`);
442442
});
443-
element.insertAdjacentHTML('beforeend',`<tr id="end" class="text-bold"><td><button class="btn">Download All <i class="icon icon-download" onclick="DownloadAllFiles(JSON.parse("${e}"));"></i></button></td><td><button class="btn">Delete All <i class="icon icon-delete" onclick=""></i></button> </td></tr>`);
443+
//element.insertAdjacentHTML('beforeend',`<tr id="end" class="text-bold"><td><button class="btn">Download All <i class="icon icon-download" onclick="DownloadAllFiles(JSON.parse("${e}"));"></i></button></td><td><button class="btn">Delete All <i class="icon icon-delete" onclick=""></i></button> </td></tr>`);
444444
}else{
445445
tab_badge.classList.remove("badge");
446446
tab_badge.dataset.badge = 0;

apps/heatsuite/heatsuite.app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function taskButtonInterpretter(arg, string) {
7474
let command = 'if (NRFFindDeviceTimeout){clearTimeout(NRFFindDeviceTimeout);}' + string;
7575
let func = new Function(arg, command);
7676
return eval(command);
77-
func();
77+
//func();
7878
}
7979

8080
function queueTaskScreenTimeout() {

0 commit comments

Comments
 (0)