inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 15, 2014 10:50:43 GMT -8
Forum URL: gooroosgruntz.proboards.comEspecially right here in the Support Board, it would save (sometimes considerable!) time to have Previous Thread and Next Thread as their own (always visible) gadgets. It helps that "Actions" is always visible even when scrolling down the page, but it still requires mousing to "Actions", scrolling down to "Go to", then selecting either "Previous thread" (much more rarely used (by me)) or "Next thread". I am going through 8 Boards, each with dozens of threads, correcting broken links and Version 5 table breaks due to the pseudo HTML format changes. The new table processor is not as lenient about mis-placed start/end tags, and causes the unsightly tables. Example of what I need to find and fix.
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 15, 2014 10:54:11 GMT -8
Hi GooRoo, For your forum, I don't expect it would be especially difficult for a coder to make a plugin that binds the Prev/Next Thread to keyboard hotkeys or places it somewhere on the page, but I don't see us implementing something like that on Support since it's always two clicks away no matter where you are in a thread.
|
|
inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 15, 2014 10:57:39 GMT -8
Hi GooRoo, For your forum, I don't expect it would be especially difficult for a coder to make a plugin that binds the Prev/Next Thread to keyboard hotkeys or places it somewhere on the page, but I don't see us implementing something like that on Support since it's always two clicks away no matter where you are in a thread. So this post should then be moved to "Plug-in requests. Please do that for me.
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 15, 2014 10:58:29 GMT -8
You got it!
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 15, 2014 15:17:14 GMT -8
Hey GooRoo, I found this plugin from Chris that is able to pull some of the options out of the menu you mentioned, but I'm not quite sure that Prev/Next Thread is among those options since I didn't see them in the screenshot. You could always check it out though
|
|
inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 15, 2014 15:52:24 GMT -8
Hey GooRoo, I found this plugin from Chris that is able to pull some of the options out of the menu you mentioned, but I'm not quite sure that Prev/Next Thread is among those options since I didn't see them in the screenshot. You could always check it out though I read through the posts, and it appears to only work BELOW the Actions drop-down. So I posted a question to learn more about it. Thanks!
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 15, 2014 15:54:24 GMT -8
Ah you're right - I mixed up dropdowns, as this plugin is for the in-post cog dropdown. My mistake!
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 16, 2014 8:19:47 GMT -8
I should be able to help you come up with something that accomplishes this, GooRoo. Can you be a bit more specific about how you'd like it to look?
|
|
inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 16, 2014 19:36:10 GMT -8
I should be able to help you come up with something that accomplishes this, GooRoo. Can you be a bit more specific about how you'd like it to look? Move "Previous Thread" and "Next Thread" out of the "Actions" drop-down menu and encase them in similar shaped rounded-corner rectangles immediately to the left of "Actions", so that a single click on "Next Thread" (for example) does exactly what selecting either item from the drop-down menu does now. [Previous Thread] [Next Thread] [Actions]
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 17, 2014 7:52:54 GMT -8
I should have something for you a little later
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on May 17, 2014 9:00:21 GMT -8
Sorry David Clark, I didn't see that you where going to do this. Anyway.... GooRoo, maybe there'll be a choice! You can add this to your global footer, or I can make it into a plugin if you prefer : <script> $(document).ready(function() { if (proboards.data('route').name == "thread"){ var prev = proboards.data('lm_thread_prev'); var next = proboards.data('lm_thread_next'); $('<a class="button" style="float:left;" href="' + prev + '"> Prev thread </a><a class="button" style="float:left;" href="' + next + '"> Next thread </a>').insertBefore('.ui-selectMenu-box'); } }); </script>
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 17, 2014 9:01:54 GMT -8
|
|
inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 17, 2014 13:12:21 GMT -8
Sorry David Clark, I didn't see that you where going to do this. Anyway.... GooRoo, maybe there'll be a choice! You can add this to your global footer, or I can make it into a plugin if you prefer : <script> $(document).ready(function() { if (proboards.data('route').name == "thread"){ var prev = proboards.data('lm_thread_prev'); var next = proboards.data('lm_thread_next'); $('<a class="button" style="float:left;" href="' + prev + '"> Prev thread </a><a class="button" style="float:left;" href="' + next + '"> Next thread </a>').insertBefore('.ui-selectMenu-box'); } }); </script>
It seems that all of these modifications go "at the bottom of" whatever element is involved, so I will start there. I will report back as soon as I have a result worth reporting. Thank You!
|
|
inherit
16284
0
Oct 6, 2024 14:14:40 GMT -8
GooRoo
I luv Gruntz!
2,589
November 2003
gooroo
|
Post by GooRoo on May 17, 2014 13:18:48 GMT -8
Well, it turns out that I had nothing in the Global Footers (or Headers!), so could not go wrong with the addition.
It works great! I recommend it for everyone!
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on May 17, 2014 13:23:32 GMT -8
And that's why Pebble's super rad.
|
|