45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
$(function() {
|
|
$('a#take-picture').on('click', function(e) {
|
|
e.preventDefault()
|
|
$.getJSON('/picture',
|
|
function(data) {
|
|
//do nothing
|
|
});
|
|
return false;
|
|
});
|
|
});
|
|
|
|
$(function() {
|
|
$('a#more-exposure').on('click', function(e) {
|
|
e.preventDefault()
|
|
$.getJSON('/moreexposure',
|
|
function(data) {
|
|
//do nothing
|
|
});
|
|
return false;
|
|
});
|
|
});
|
|
|
|
$(function() {
|
|
$('a#less-exposure').on('click', function(e) {
|
|
e.preventDefault()
|
|
$.getJSON('/lessexposure',
|
|
function(data) {
|
|
//do nothing
|
|
});
|
|
return false;
|
|
});
|
|
});
|
|
|
|
$(function() {
|
|
$('a#copy-video-stream-url').on('click', function(e) {
|
|
const textArea = document.createElement("textarea");
|
|
const video_stream_path = document.getElementById("bg").src;
|
|
textArea.value = video_stream_path;
|
|
document.body.appendChild(textArea);
|
|
textArea.select();
|
|
document.execCommand("copy");
|
|
document.body.removeChild(textArea);
|
|
return false;
|
|
});
|
|
}); |