mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-08 15:23:38 +00:00
24 lines
454 B
JavaScript
24 lines
454 B
JavaScript
document.onclick = function(e){
|
|
window.closePopovers();
|
|
}
|
|
|
|
window.init();
|
|
|
|
|
|
document.getElementById("search-button").onclick = function(e){
|
|
window.searchAll();
|
|
}
|
|
document.getElementById("add-device-button").onclick = function(e){
|
|
//e.stopPropagation();
|
|
//document.getElementById("add-device-popover").style.display = "block";
|
|
}
|
|
|
|
|
|
|
|
window.closePopovers = function(){
|
|
//document.getElementById("add-device-popover").style.display = "none";
|
|
}
|
|
|
|
|
|
|