Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara-flashplayer
mahara-flashplayer
Commits
a71d6246
Commit
a71d6246
authored
Sep 18, 2012
by
Anssi Piirainen
Browse files
Merge pull request #30 from flowplayer/issue26
Issue #26: make isFullscreen return something meaningful
parents
37bc862e
bc138217
Changes
1
Hide whitespace changes
Inline
Side-by-side
js-plugins/ipad/flowplayer.ipad.js
View file @
a71d6246
...
@@ -564,7 +564,10 @@ $f.addPlugin("ipad", function(options) {
...
@@ -564,7 +564,10 @@ $f.addPlugin("ipad", function(options) {
}
}
video
.
fp_isFullscreen
=
function
()
{
video
.
fp_isFullscreen
=
function
()
{
return
false
;
//video.webkitDisplayingFullscreen;
var
isfullscreen
=
video
.
webkitDisplayingFullscreen
;
if
(
isfullscreen
!==
undefined
)
return
isfullscreen
;
return
false
;
}
}
video
.
fp_toggleFullscreen
=
function
()
{
video
.
fp_toggleFullscreen
=
function
()
{
...
...
Write
Preview
Supports
Markdown
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