Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc-gpu
Commits
dee4c925
Commit
dee4c925
authored
Oct 21, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
web intf: mobile: delay loading of flowplayer
parent
a8de45a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
share/lua/http/mobile_view.html
share/lua/http/mobile_view.html
+3
-2
No files found.
share/lua/http/mobile_view.html
View file @
dee4c925
...
...
@@ -32,15 +32,16 @@
<script
type=
"text/javascript"
src=
"js/jquery-1.5.1.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui-1.8.13.custom.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery.jstree.js"
></script>
<script
type=
"text/javascript"
src=
"http://static.flowplayer.org/js/flowplayer-3.2.6.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/controlers.js"
></script>
<script
type=
"text/javascript"
src=
"js/ui.js"
></script>
<script
type=
"text/javascript"
>
var
pollStatus
=
false
;
$
(
function
(){
/* delay script loading so we won't block if we have no net access */
$
.
getScript
(
'
http://static.flowplayer.org/js/flowplayer-3.2.6.min.js
'
,
function
(
data
,
textStatus
){
$
(
'
#player
'
).
empty
();
$
(
'
#player
'
).
attr
(
'
href
'
,
$
(
'
#stream_protocol
'
).
val
()
+
'
://
'
+
$
(
'
#stream_host
'
).
val
()
+
'
:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
());
flowplayer
(
"
player
"
,
"
http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf
"
);
/* .getScript only handles success() */
});
</script>
</head>
...
...
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