Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ec2bb2fd
Commit
ec2bb2fd
authored
Sep 29, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the integer value for teletext page in test.html.
parent
a8d53a30
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
89 additions
and
93 deletions
+89
-93
projects/mozilla/test.html
projects/mozilla/test.html
+89
-93
No files found.
projects/mozilla/test.html
View file @
ec2bb2fd
...
...
@@ -208,7 +208,7 @@ Verbosity:
<TD>
<INPUT
type=
button
id=
"telx"
value=
"Teletext off"
onClick=
'doToggleTeletext();'
>
Teletext page:
<INPUT
size=
4
value=
"100"
id=
"telxPage"
onClick=
"doTelxPage(document.getElementById('telxPage').value);"
>
<INPUT
size=
4
value=
"100"
id=
"telxPage"
onClick=
'doTelxPage(document.getElementById("telxPage").value);'
>
</TD>
</TR>
</TABLE>
...
...
@@ -303,7 +303,6 @@ function doAspectRatio(value)
function doSubtitle(value)
{
var vlc = getVLC("vlc");
alert(vlc.video.subtitle + value);
vlc.video.subtitle = vlc.video.subtitle + value;
document.getElementById("spuTextField").innerHTML = vlc.video.subtitle;
};
...
...
@@ -311,8 +310,7 @@ function doSubtitle(value)
function doTelxPage(value)
{
var vlc = getVLC("vlc");
alert( value );
vlc.video.teletext = 889; //value;
vlc.video.teletext = parseInt(value);
};
function doToggleTeletext()
...
...
@@ -324,13 +322,11 @@ function doToggleTeletext()
{
document.getElementById("telx").innerHTML = "Teletext on";
telxState = true;
alert( "telextext on" );
}
else
{
document.getElementById("telx").innerHTML = "Teletext off";
telxState = false;
alert( "telextext off" );
}
}
...
...
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