|
|
|
@ -100,7 +100,7 @@ function showhelpAndScrollTo(id) {
|
|
|
|
|
information.attr("value", "show_help");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function showhelpAndScrollToMessage(id, id1) {
|
|
|
|
|
function showhelpAndScrollToMessage(id, id1, count) {
|
|
|
|
|
$('#' + id).toggle();
|
|
|
|
|
if(cookieget("repositories_visiable") == "true")
|
|
|
|
|
{
|
|
|
|
@ -114,12 +114,12 @@ function showhelpAndScrollToMessage(id, id1) {
|
|
|
|
|
var val = information.attr("value");
|
|
|
|
|
if(val=="show_help")
|
|
|
|
|
{
|
|
|
|
|
$(id1).text("收起回复");
|
|
|
|
|
$(id1).text("收起回复(" + count + ")" );
|
|
|
|
|
information.attr("value", "hide_help");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$(id1).text("展开回复");
|
|
|
|
|
$(id1).text("展开回复(" + count + ")");
|
|
|
|
|
information.attr("value", "show_help");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|