Hide context entries in threaded lists; it's redundant (and if there's more than a few messages, we have the context link still :D)

Also hides them via CSS for new ajax additions
This commit is contained in:
Brion Vibber 2011-03-01 13:30:38 -08:00
parent 082ddf365e
commit 35ce314bfb
2 changed files with 15 additions and 0 deletions

View File

@ -147,6 +147,11 @@ class ThreadedNoticeListItem extends NoticeListItem
{
const INITIAL_ITEMS = 3;
function showContext()
{
// Silence!
}
/**
* finish the notice
*
@ -211,6 +216,11 @@ class ThreadedNoticeListSubItem extends NoticeListItem
{
//
}
function showContext()
{
//
}
}
/**

View File

@ -1136,6 +1136,11 @@ border-top-style:solid;
.threaded-notices .notice-reply-comments {
margin: 8px;
}
.threaded-notices .response,
.threaded-notices .source {
/* Hide these for ajax/realtime sourced notices */
display: none;
}
/* NOTICES */
#notices_primary {
float:left;