|
|
|
11-06-2009, 04:26 PM
|
#31
|
|
WIFOM
Join Date: Dec 2005
Location: A Galaxy far, far away....
Posts: 11,193
TC CLUB MEMBER
|
Quote:
Originally Posted by steve614
Thanks for the timely addition.
|
__________________
CANCER SUCKS!
I agree with Betts. angbear1985
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-06-2009, 04:26 PM
|
#32
|
|
WIFOM
Join Date: Dec 2005
Location: A Galaxy far, far away....
Posts: 11,193
TC CLUB MEMBER
|
Quote:
Originally Posted by betts4
|
Very cool!
Thank you!!!
__________________
CANCER SUCKS!
I agree with Betts. angbear1985
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-06-2009, 04:29 PM
|
#33
|
|
Administrator
Join Date: Jan 2008
Posts: 157
|
__________________
Peter Redmer
Administrator, Capable Networks
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-06-2009, 05:00 PM
|
#34
|
|
what ru lookin at?
Join Date: May 2006
Location: Dallas, TX
Posts: 3,817
|
We'll see if it works.
It works for me.
__________________
The Man Prayer: I'm a man ...... I can change ...... If I have to ...... I guess.
|
|
|
11-06-2009, 05:09 PM
|
#35
|
|
Administrator
Join Date: Jan 2008
Posts: 157
|
__________________
Peter Redmer
Administrator, Capable Networks
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-06-2009, 05:15 PM
|
#36
|
|
ɹǝsn pǝɹǝʇsıƃǝɹ
Join Date: Apr 2006
Posts: 9,324
|
Interesting new way to view spoilers? Does this change the way spoilers are handled in the e-mail notifications (not that I care, just wondering)?
__________________
Creator of To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. and To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
S2 80 HR - 3 Yr Prepaid
S2 526 HR - Lifetime
XBL Gamertag - UnseenThought
|
|
|
11-06-2009, 05:45 PM
|
#37
|
|
Registered User
Join Date: Dec 2001
Posts: 6,214
|
Peter, you rock! Thanks!
|
|
|
11-06-2009, 06:59 PM
|
#38
|
|
Exhausted mama
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
|
Today is a great day. 
__________________
Do you shop at Amazon? Please help a new momma To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. You know you need the good karma!
No codes to use, nothing special to do---just click the link and shop as normal!
|
|
|
11-06-2009, 06:59 PM
|
#39
|
|
Exhausted mama
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
|
__________________
Do you shop at Amazon? Please help a new momma To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. You know you need the good karma!
No codes to use, nothing special to do---just click the link and shop as normal!
|
|
|
11-06-2009, 07:13 PM
|
#40
|
|
.
Join Date: Aug 2001
Posts: 1,552
|
Thanks Peter. I like this much better than highlighting.
If adding a script block somewhere on the page is not a big deal, I think it would also be nice to have a button to show and hide all spoilers at once.
Here's a script block that will allow that to happen:
Code:
<script type="text/javascript">
function ShowSpoiler(spoiler)
{
spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';
var buttons = spoiler.getElementsByTagName('input');
var showHideButton = buttons[0];
var showHideAllButton = buttons[1];
showHideButton.value = 'Hide';
showHideAllButton.value = 'Hide All';
}
function HideSpoiler(spoiler)
{
spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none';
var buttons = spoiler.getElementsByTagName('input');
var showHideButton = buttons[0];
var showHideAllButton = buttons[1];
showHideButton.value = 'Show';
showHideAllButton.value = 'Show All';
}
function ToggleSpoiler(spoiler)
{
if (spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '')
ShowSpoiler(spoiler);
else
HideSpoiler(spoiler);
}
function DoForAllSpoilers(node, action)
{
if (node.name == "spoiler")
{
action(node);
return;
}
var childNodes = node.childNodes;
var length = childNodes.length;
for (var i = 0; i < length; ++i)
{
DoForAllSpoilers(childNodes[i], action);
}
}
function ToggleAllSpoilers(showHideAllButton)
{
if (showHideAllButton.value == 'Show All')
DoForAllSpoilers(document.body, ShowSpoiler);
else
DoForAllSpoilers(document.body, HideSpoiler);
}
</script>
And then you just need to update the template for spoilers to have the following:
Code:
<div name="spoiler" style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">Spoiler: <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="ToggleSpoiler(this.parentNode.parentNode)"></input> <input type="button" value="Show All" style="width:55px;font-size:10px;margin:0px;padding:0px;" onClick="ToggleAllSpoilers(this)"></div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
{Spoiler Text}
</div>
</div>
</div></div>
__________________
...there's a fine line between committing a felony and doing something really super cool. Sock, Reaper
|
|
|
11-06-2009, 08:35 PM
|
#41
|
|
Transporter Accident
Join Date: Aug 2001
Location: Charleston, SC
Posts: 4,464
|
__________________
The invasion is complete. :D
Xbox Live: DTigerFan
|
|
|
11-06-2009, 11:16 PM
|
#42
|
|
I miss the ocean
Join Date: Jul 2000
Location: Dallas Texas
Posts: 3,558
|
me likes....
|
|
|
11-07-2009, 04:37 PM
|
#43
|
|
Register User
Join Date: Dec 2004
Posts: 1,749
|
Very cool, now I can read spoilers from my iPhone
__________________
.
|
|
|
11-09-2009, 12:54 PM
|
#44
|
|
Registered User
Join Date: Oct 2004
Posts: 1,588
|
Quote:
Originally Posted by BitbyBlit
Thanks Peter. I like this much better than highlighting.
If adding a script block somewhere on the page is not a big deal, I think it would also be nice to have a button to show and hide all spoilers at once.
Here's a script block that will allow that to happen:
|
I'd love to see that as well. I'd go one farther and say I wish there was a user preference for spoiler display. That is a way to just say: Indicate what others consider a spoiler so I know what I need to spoilerize, but for me, just expand it so i don't have to hit any buttons, highlight, etc.
__________________
Save the cheerleader. Save the world. -"Heroes" ad on NBC
Screw the cheerleader. Destroy the world. -chalkboard on "My Name is Earl"
|
|
|
11-09-2009, 01:01 PM
|
#45
|
|
I am Groot!
Join Date: Oct 2000
Location: Minneapolis
Posts: 17,321
|
Quote:
Originally Posted by alpacaboy
I'd love to see that as well. I'd go one farther and say I wish there was a user preference for spoiler display. That is a way to just say: Indicate what others consider a spoiler so I know what I need to spoilerize, but for me, just expand it so i don't have to hit any buttons, highlight, etc.
|
Better yet, write an artificial intelligence that will analyze the spoilers and break them down into categories..."next week" spoiler, casting spoilers, news about future episodes, etc. Then, we can select what kinds of things we want to remain tagged and which ones can just be out in the open.
That would be handy.
__________________
"The EMF is going nuts."—Not Sam. Then Sam.
|
|
|
11-14-2009, 12:54 PM
|
#46
|
|
Registered User
Join Date: Feb 2002
Location: Warwick, RI
Posts: 8,686
|
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-17-2009, 08:31 PM
|
#47
|
|
ɹǝs∩ pǝɹǝʇsıƃǝᴚ
Join Date: Nov 2004
Location: Lafayette, IN
Posts: 3,990
|
__________________
I am Sherminator, killer of threads
Last edited by Sherminator : 11-18-2009 at 04:01 PM.
|
|
|
11-17-2009, 09:06 PM
|
#48
|
|
Potato CSR
Join Date: Oct 2000
Posts: 32,951
|
Quote:
Originally Posted by Sherminator
Can we have a quick spoiler tag button in the quick edit box also?
Thank you.
|
Not a bad idea... hopefully our window of opportunity hasn't closed, the Powers That Be remained interested in continued improvements!
Here's instructions for an admin to add buttons to the QuickEdit template:
http://www.vbulletin.org/forum/showthread.php?t=102282
It'd be much appreciated...
|
|
|
11-18-2009, 03:28 PM
|
#49
|
|
Administrator
Join Date: Jan 2008
Posts: 157
|
Quote:
Originally Posted by Fofer
Not a bad idea... hopefully our window of opportunity hasn't closed, the Powers That Be remained interested in continued improvements!
Here's instructions for an admin to add buttons to the QuickEdit template:
http://www.vbulletin.org/forum/showthread.php?t=102282
It'd be much appreciated...
|
Done  It seems to work for me. Let me know if you have any trouble.
__________________
Peter Redmer
Administrator, Capable Networks
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-18-2009, 03:34 PM
|
#50
|
|
Exhausted mama
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
|
This might be somewhat related...or not... but there is no quote button in the Quick Reply box and I thought there used to be. But it could be my bad memory... 
__________________
Do you shop at Amazon? Please help a new momma To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. You know you need the good karma!
No codes to use, nothing special to do---just click the link and shop as normal!
|
|
|
11-18-2009, 03:37 PM
|
#51
|
|
Potato CSR
Join Date: Oct 2000
Posts: 32,951
|
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|