Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2013-12-25 22:18:05 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7b2f9d59a21ae37cfab53430837cc620196a6a1e
7b2f9d59
1 parent
ec5e33f3
fix bug of identify the truevision camera
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
5 行增加
和
2 行删除
trunk/research/players/js/srs.page.js
trunk/research/players/srs_chat.html
trunk/research/players/js/srs.page.js
查看文件 @
7b2f9d5
...
...
@@ -162,7 +162,7 @@ function srs_initialize_codec_page(
}
}
// optional: select the first matched.
matchs
=
[
"t
ur
evision"
,
"integrated"
];
matchs
=
[
"t
ru
evision"
,
"integrated"
];
for
(
var
i
=
0
;
i
<
cameras
.
length
;
i
++
)
{
for
(
var
j
=
0
;
j
<
matchs
.
length
;
j
++
)
{
if
(
cameras
[
i
].
toLowerCase
().
indexOf
(
matchs
[
j
])
>=
0
)
{
...
...
trunk/research/players/srs_chat.html
查看文件 @
7b2f9d5
...
...
@@ -294,6 +294,7 @@
$
(
obj
).
find
(
"#chat_player"
).
attr
(
"id"
,
"rp_"
+
chat
.
id
);
// for specifed player: $("#rp_" + chat_id)
$
(
obj
).
find
(
"#chat_player_raw"
).
attr
(
"id"
,
"rp_raw_"
+
chat
.
id
);
// for specifed player: $("#rp_raw_" + chat_id)
$
(
obj
).
find
(
"#user_name"
).
text
(
chat
.
username
);
$
(
obj
).
find
(
"#user_player_url"
).
attr
(
"href"
,
chat
.
url
);
$
(
obj
).
find
(
"#join_date"
).
text
(
chat
.
join_date_str
);
$
(
obj
).
find
(
"#collapseM"
).
attr
(
"id"
,
"collapse_"
+
global_chat_user_id
);
$
(
obj
).
find
(
"#headerN"
).
attr
(
"href"
,
"#collapse_"
+
global_chat_user_id
);
...
...
@@ -588,7 +589,9 @@
<span
id=
"headerN"
class=
"accordion-toggle"
data-toggle=
"collapse"
href=
"#collapseN"
>
<strong>
[
<a
href=
"#"
><span
id=
"user_name"
>
XX
</span></a>
]
</strong>
<strong>
加入时间
</strong>
[
<span
id=
"join_date"
></span>
]
<img
src=
"img/tooltip.png"
/>
<a
id=
"user_player_url"
href=
"#"
data-toggle=
"tooltip"
data-placement=
"top"
title=
""
>
播放地址
<img
src=
"img/tooltip.png"
/>
</a>
</span>
</div>
<div
id=
"collapseM"
class=
"accordion-body collapse in"
>
...
...
请
注册
或
登录
后发表评论