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
f89d0a88
Commit
f89d0a88
authored
Sep 24, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
web intf: save few bytes using chaining
parent
e63678cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
18 deletions
+23
-18
share/lua/http/js/controlers.js
share/lua/http/js/controlers.js
+23
-18
No files found.
share/lua/http/js/controlers.js
View file @
f89d0a88
...
...
@@ -29,35 +29,40 @@ function updateStatus(){
$
(
'
#subtitleSlider
'
).
slider
({
value
:
(
$
(
'
subtitledelay
'
,
data
).
text
())
});
$
(
'
#currentSubtitleDelay
'
).
append
(
Math
.
round
(
$
(
'
subtitledelay
'
,
data
).
text
()
*
100
)
/
100
+
'
s
'
);
$
(
'
#seekSlider
'
).
attr
(
'
totalLength
'
,
$
(
'
length
'
,
data
).
text
());
$
(
'
#buttonPlay
'
).
attr
(
'
state
'
,
$
(
'
state
'
,
data
).
text
());
$
(
'
#buttonPlay
'
).
attr
(
'
mrl
'
,
$
(
'
[name="filename"]
'
,
data
).
text
());
$
(
'
#buttonPlay
'
)
.
attr
(
'
state
'
,
$
(
'
state
'
,
data
).
text
())
.
attr
(
'
mrl
'
,
$
(
'
[name="filename"]
'
,
data
).
text
());
if
(
$
(
'
state
'
,
data
).
text
()
==
'
playing
'
){
$
(
'
#buttonPlay
'
).
removeClass
(
'
paused
'
);
$
(
'
#buttonPlay
'
).
addClass
(
'
playing
'
);
$
(
'
#buttonPlay
'
).
removeClass
(
'
paused
'
).
addClass
(
'
playing
'
);
}
else
{
$
(
'
#buttonPlay
'
).
removeClass
(
'
playing
'
);
$
(
'
#buttonPlay
'
).
addClass
(
'
paused
'
);
$
(
'
#buttonPlay
'
).
removeClass
(
'
playing
'
).
addClass
(
'
paused
'
);
}
if
(
$
(
'
random
'
,
data
).
text
()
==
'
true
'
){
$
(
'
#buttonShuffle
'
).
removeClass
(
'
ui-state-default
'
);
$
(
'
#buttonShuffle
'
).
addClass
(
'
ui-state-active
'
);
$
(
'
#buttonShuffle
'
)
.
removeClass
(
'
ui-state-default
'
)
.
addClass
(
'
ui-state-active
'
);
}
else
{
$
(
'
#buttonShuffle
'
).
addClass
(
'
ui-state-default
'
);
$
(
'
#buttonShuffle
'
).
removeClass
(
'
ui-state-active
'
);
$
(
'
#buttonShuffle
'
)
.
addClass
(
'
ui-state-default
'
)
.
removeClass
(
'
ui-state-active
'
);
}
if
(
$
(
'
loop
'
,
data
).
text
()
==
'
true
'
){
$
(
'
#buttonLoop
'
).
removeClass
(
'
ui-state-default
'
);
$
(
'
#buttonLoop
'
).
addClass
(
'
ui-state-active
'
);
$
(
'
#buttonLoop
'
)
.
removeClass
(
'
ui-state-default
'
)
.
addClass
(
'
ui-state-active
'
);
}
else
{
$
(
'
#buttonLoop
'
).
addClass
(
'
ui-state-default
'
);
$
(
'
#buttonLoop
'
).
removeClass
(
'
ui-state-active
'
);
$
(
'
#buttonLoop
'
)
.
addClass
(
'
ui-state-default
'
)
.
removeClass
(
'
ui-state-active
'
);
}
if
(
$
(
'
repeat
'
,
data
).
text
()
==
'
true
'
){
$
(
'
#buttonRepeat
'
).
removeClass
(
'
ui-state-default
'
);
$
(
'
#buttonRepeat
'
).
addClass
(
'
ui-state-active
'
);
$
(
'
#buttonRepeat
'
)
.
removeClass
(
'
ui-state-default
'
)
.
addClass
(
'
ui-state-active
'
);
}
else
{
$
(
'
#buttonRepeat
'
).
addClass
(
'
ui-state-default
'
);
$
(
'
#buttonRepeat
'
).
removeClass
(
'
ui-state-active
'
);
$
(
'
#buttonRepeat
'
)
.
addClass
(
'
ui-state-default
'
)
.
removeClass
(
'
ui-state-active
'
);
}
if
(
$
(
'
[name="artwork_url"]
'
,
data
).
text
()
!=
currentArt
...
...
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