Skip to content
Merged
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
6 changes: 6 additions & 0 deletions src/room.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@ export class SpatialRoom extends EventTarget {
screen.orientation.addEventListener('change',
_.bind(this.redraw, this));
}

// Override the default name of NoSleep's internal video element,
// which is displayed on the lock screen if the user puts their
// device to sleep manually, as well as on connected devices
// such as an Apple Watch.
noSleep.noSleepVideo.setAttribute("title", "Audimance")
}

enableAudio() {
Expand Down
Loading