bugfix
This commit is contained in:
parent
1bb75cfd76
commit
5e8512f12d
|
@ -413,12 +413,14 @@ function setNewCurrentStream(stream,actionOnSuccess,setLocation) {
|
||||||
if(window.currentStream == stream) {
|
if(window.currentStream == stream) {
|
||||||
|
|
||||||
// change link color
|
// change link color
|
||||||
|
if(typeof window.userLinkColor != 'undefined') {
|
||||||
if(window.userLinkColor.length == 6) {
|
if(window.userLinkColor.length == 6) {
|
||||||
changeLinkColor('#' + window.userLinkColor);
|
changeLinkColor('#' + window.userLinkColor);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
changeLinkColor('#0084B4');
|
changeLinkColor('#0084B4');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// get screen name from stream, if not found, this is me
|
// get screen name from stream, if not found, this is me
|
||||||
if(stream.indexOf('screen_name=')>-1) {
|
if(stream.indexOf('screen_name=')>-1) {
|
||||||
|
@ -452,12 +454,14 @@ function setNewCurrentStream(stream,actionOnSuccess,setLocation) {
|
||||||
if(window.currentStream == stream) {
|
if(window.currentStream == stream) {
|
||||||
|
|
||||||
// change link color
|
// change link color
|
||||||
|
if(typeof window.userLinkColor != 'undefined') {
|
||||||
if(window.userLinkColor.length == 6) {
|
if(window.userLinkColor.length == 6) {
|
||||||
changeLinkColor('#' + window.userLinkColor);
|
changeLinkColor('#' + window.userLinkColor);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
changeLinkColor('#0084B4');
|
changeLinkColor('#0084B4');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// show profile card if this is a user's queet stream
|
// show profile card if this is a user's queet stream
|
||||||
if(stream.substring(0,27) == 'statuses/user_timeline.json') {
|
if(stream.substring(0,27) == 'statuses/user_timeline.json') {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user