Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sfu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alain Takoudjou
sfu
Commits
96c3e4f8
Commit
96c3e4f8
authored
Oct 31, 2020
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add warning about screen sharing under Safari.
parent
2efb5b3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
static/sfu.js
static/sfu.js
+11
-0
No files found.
static/sfu.js
View file @
96c3e4f8
...
...
@@ -818,6 +818,8 @@ async function addLocalMedia(id) {
setButtonsVisibility
();
}
let
safariWarningDone
=
false
;
async
function
addShareMedia
()
{
if
(
!
getUserPass
())
return
;
...
...
@@ -835,6 +837,15 @@ async function addShareMedia() {
return
;
}
if
(
!
safariWarningDone
)
{
let
ua
=
navigator
.
userAgent
.
toLowerCase
();
if
(
ua
.
indexOf
(
'
safari
'
)
>=
0
&&
ua
.
indexOf
(
'
chrome
'
)
<
0
)
{
displayWarning
(
'
Screen sharing under Safari is experimental.
'
+
'
Please use a different browser if possible.
'
);
}
safariWarningDone
=
true
;
}
let
c
=
newUpStream
();
c
.
kind
=
'
screenshare
'
;
c
.
stream
=
stream
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment