Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function updateFooterCounter(id, totalSeconds) {
const counter = Data.get(id);
if (counter) {
counter.totalSeconds = totalSeconds;
console.log(`FooterCounter updated: ${id}, totalSeconds: ${totalSeconds}`);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
window.BootstrapBlazor.MindMap = {
callbacks: {
clickCustom: function (args) {
console.log(this, args);

}
}
}
3 changes: 0 additions & 3 deletions src/BootstrapBlazor/Components/Camera/Camera.razor.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ const play = (camera, option = {}) => {
...option
}
navigator.mediaDevices.getUserMedia(constrains).then(stream => {
const supportedConstraints = navigator.mediaDevices.getSupportedConstraints();
console.log(supportedConstraints);

camera.video = { deviceId: option.video.deviceId };
camera.video.element = camera.el.querySelector('video')
camera.video.element.srcObject = stream
Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/wwwroot/modules/media.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
export async function enumerateDevices() {
let ret = null;
if (!navigator.mediaDevices || !navigator.mediaDevices.getUserMedia || !navigator.mediaDevices.enumerateDevices) {
console.log("enumerateDevices() not supported.");
console.error("enumerateDevices() not supported.");
}
else {
try {
Expand Down
Loading