This commit is contained in:
Hannes Mannerheim 2013-08-25 23:06:06 +02:00
parent d6c2ee383c
commit 8f47c3b4f9
2 changed files with 31 additions and 33 deletions

View File

@ -169,7 +169,7 @@ function postQueetToAPI(queetText_txt, actionOnSuccess) {
· · · · · · · · · · · · · */
function postNewLinkColor(newLinkColor) {
$.ajax({ url: 'API.php',
$.ajax({ url: window.fullUrlToThisQvitterApp + 'API.php',
type: "POST",
data: {
postRequest: 'account/update_link_color.json',
@ -196,7 +196,7 @@ function postNewLinkColor(newLinkColor) {
· · · · · · · · · · · · · */
function postNewBackgroundColor(newBackgroundColor) {
$.ajax({ url: 'API.php',
$.ajax({ url: window.fullUrlToThisQvitterApp + 'API.php',
type: "POST",
data: {
postRequest: 'account/update_background_color.json',

View File

@ -263,9 +263,9 @@ $('#settings').click(function(){
function logoutWithoutReload(doShake) {
// preload default background
$('<img/>').attr('src', window.fullUrlToThisQvitterApp + 'img/ekan4.jpg').load(function() {
if(window.currentStream == 'statuses/public_timeline.json') {
$('body').css('background-image', 'url(' + window.fullUrlToThisQvitterApp + 'img/ekan4.jpg)');
}
$('#submit-login').removeAttr('disabled');
@ -296,8 +296,6 @@ function logoutWithoutReload(doShake) {
});
$('#page-container').animate({opacity:'1'},200);
});
}