Poll

Do you like the new system?

Yes
10 (4.9%)
What the forget do you think
194 (95.1%)

Total Members Voted: 204

Author Topic: YouTube overhauls comments and links them to Google+  (Read 29349 times)

From the Facepunch topic
Quote from: Brt5470
Quote from: roman117
Also, more spam bots
http://i.imgur.com/Zej1M0H.png
This one is just what the forget.
It's What the forget because she's looking at it from G+, and she just sees random comments with someone called "GreedyMexican" randomly attacking some person.

Quote from: simzboy
http://i.imgur.com/uhH5eHj.png
I think I made it mad.

Quote from: Lawligagger
On another note.

http://puu.sh/5b1yL.jpg

Who the forget even speaks like this.



Quote from: Brt5470
It's What the forget because she's looking at it from G+, and she just sees random comments with someone called "GreedyMexican" randomly attacking some person.
This is just loving depressing now.

I'm having fun reading all this in case you couldn't tell

That was actually one of my favorite features :c

It looks like they quick-patched it.

Like, REALLY badly. All they did was make times in comments a link to the video with "#t=#h#m#s". This instead of actually redirecting the video on the current page, it opens a new tab.

there's no loving character limit on the comments.

there's no loving character limit on the comments.


Also because of linking, people are posting research and such, i'd rather not post an example of someone doing so



Also because of linking, people are posting research and such, i'd rather not post an example of someone doing so

Oh wow, links. Brilliant, Google.
How did they seriously not notice all these problems?

What a wonderful update. This obviously went through very rigorous testing with dedicated users! How else would Google release something so polished and streamlined?

What a wonderful update. This obviously went through very rigorous testing with dedicated users! How else would Google release something so polished and streamlined?
/sarcasm

YouTube is going downhill 5x faster


How do you get to the inbox, again? Like, where on the page did that move to?

Edit: https://support.google.com/youtube/answer/3523594

I DON'T WANT A NEW loving EMAIL EVERY TIME I GET A REPLY YOU richardS.
« Last Edit: November 07, 2013, 01:45:23 AM by MegaScientifical »

also
My youtube account is google plus
is anyone else having an issue where comments don't display at all?

Youtube is offically screwd, also my intternet will turn off In one min so bye

Code: [Select]
function AddInboxBack(document) {
var list = document.getElementById('masthead-expanded-menu-list');
var li = list.children[0].cloneNode(true);
li.children[0].href = "/inbox";
li.children[0].innerHTML = "Inbox";
list.appendChild(li);
}

The above Javascript will add the inbox link to the bottom of the list it used to belong to. How you implement it is up to you - I'm going to use a userscript.

Edit: Greasemonkey Userscript:

Code: [Select]
// ==UserScript==
// @name        Add Inbox Back
// @namespace   https://www.youtube.com/
// @description Puts the inbox link back.
// @include     *://www.youtube.com/*
// @version     1.0
// ==/UserScript==

function AddInboxBack() {
var list = document.getElementById('masthead-expanded-menu-list');
if(list != null ) {
var li = list.children[0].cloneNode(true);
li.children[0].href = "/inbox";
li.children[0].innerHTML = "Inbox";
list.appendChild(li);
}
else {
console.log("Could not add Inbox to this page.");
}
}

document.addEventListener('DOMContentLoaded', AddInboxBack, false);

The javascript is set to load on any page from YouTube.com. It looks up the top list. If it finds it successfully, it clones the first entry/link in the list. Then it edits the link to the inbox and the text displayed to say Inbox. Then it adds this to the bottom of the list. If it can't find it the list, it will put an error in the javascript console, just so you might find what's going on. And of course the event listener for content loaded so it waits until it is sure everything is ready.
« Last Edit: November 07, 2013, 04:08:09 AM by MegaScientifical »

to get to your inbox you have to go into video manger and it's on the left there

I've always been curious.
Why does google keep releasing a bunch of updates that no one wants?
I really want to know.