Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of Social Statistics
| 1 | // $Id: $ |
| 2 | function update_social_stat(module) { |
| 3 | $.post( |
| 4 | "/social_statistics/block/" + module, |
| 5 | { url: ss_url }, |
| 6 | function(data) { |
| 7 | $("#" + module).find("div.stat").fadeOut(1000, function() { |
| 8 | $("#" + module).find("div.stat").html(data).fadeIn(1000); |
| 9 | }); |
| 10 | } |
| 11 | ); |
| 12 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |