Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-settings.php on line 472
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-settings.php on line 487
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-settings.php on line 494
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-settings.php on line 530
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-includes/cache.php on line 103
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-includes/query.php on line 21
Deprecated: Assigning the return value of new by reference is deprecated in /home/garryhua/public_html/blog/wp-includes/theme.php on line 623
Warning: Cannot modify header information - headers already sent by (output started at /home/garryhua/public_html/blog/wp-settings.php:472) in /home/garryhua/public_html/blog/wp-content/plugins/twitter-tools/twitter-tools.php on line 661
function akttPostTweet() {
var tweet_field = $('aktt_tweet_text');
var tweet_text = tweet_field.value;
if (tweet_text == '') {
return;
}
var tweet_msg = $("aktt_tweet_posted_msg");
var akttAjax = new Ajax.Updater(
tweet_msg,
"http://blog.garryhuang.com/index.php",
{
method: "post",
parameters: "ak_action=aktt_post_tweet_sidebar&aktt_tweet_text=" + tweet_text,
onComplete: akttSetReset
}
);
tweet_field.value = '';
tweet_field.focus();
$('aktt_char_count').innerHTML = '';
tweet_msg.style.display = 'block';
}
function akttSetReset() {
setTimeout('akttReset();', 2000);
}
function akttReset() {
$('aktt_tweet_posted_msg').style.display = 'none';
}