An annoying thing that happens when upvoting a post here in the forums.
- Inicie sesión ou rexístrese para enviar comentarios
You know when you upvote a post here in the forums, you are being navigated to the top? It's annoying isn't it? I honestly think it should be like reddit, wherein when you upvote, it does not bring you to the top or the start of a thread. Please do something about it? The same should go for downvote. Thanks!
Please don't hate me, I'm just being honest. :D I'm not angry towards the Trisquel devs lol.
There has been a bit of dislike about the whole voting system in general but that is more about the concept rather than the technology. About the only reason I can think that it working the way that it does is due to a reduced need on browser based scripting. Every time you do a vote it will reload the entire page, not ideal but it works.
There's nothing wrong with browser-based scripting if the software is free. If the appropriate tags can be added to allow LibreJS compatibility, then I agree that this should be switched to Javascript.
i disagree even if the software is libre
its run normally without the users permission
automatically while it would be miles
better to have libre automatic js
its still better for any program
to only be run with the users permission
people should always be-able to use
a website without java-script
I have no major issues with Java script but it is a case of - if a simple task like an up vote can be done server side then it might as well be done like that. It is not a case of freedom here just a case of simplifying the technology.
i have no problem with javascript i just have a problem
when a program is run without the users permission
I like that it works without JavaScript. Reddit, I can't stand, because nothing there works without gratuitous JavaScript. It's not as bad as Diaspora, but still.
The only way I am going to accept JavaScript-based extensions that aren't being sent from a machine I have control over is if a libre browser exists which allows the user to specify exactly what scripts to install, and installs those scripts permanently. See my essay for more information (I updated it recently):
I right-click-->Open link in new tab on the upvote/downvote button, then close the new tab after it loads. It's not ideal, but it works.
I right-click-->Open link in new tab
A middle click does that.
I sometimes press my laptop mouse buttons at slightly different times, so it registers as a left click (opening in the same window instead of a new one,) so I gave that sequence out of habit. Yes, that works too, though more reliably with a real mouse.
I find it MUCH easier to use the corner of the touchpad as middle button rather than the simultaneous buttons click. And I agree real mice for the win. (Except when table top space is very limited or when it's important to be as silent as possible...)
Holy shit! This actually works! Haha! I'll be using Ctrl + left click more often.
This is possible without javascript.
each post could have a bookmark and the up/downvote could redirect to that after reloading the page.
edit: (I can see the already do have a bookamr, so it should be rather simple :) )
> bookmark
HTML anchor
true, anchor is the name :)
The vote buttons can be easily made to work both with and without JavaScript.
Here's a trivial program which should do this, although it appears there are other scripts which get in the way right now:
function initVoteButtons() { var rateButtons = document.querySelectorAll('a.rate-button'); function sendVote(event) { event.preventDefault(); var xhr = new XMLHttpRequest(); xhr.open('HEAD', this.href); xhr.send(); } for (var i = 0; i < rateButtons.length; ++i) { rateButtons[i].addEventListener('click', sendVote, false); } } window.addEventListener('load', initVoteButtons, false);
- Inicie sesión ou rexístrese para enviar comentarios