Gazelle/static/functions/rippy.js

16 lines
331 B
JavaScript
Raw Normal View History

2011-03-28 14:21:28 +00:00
function say() {
2012-10-29 08:00:20 +00:00
ajax.get("ajax.php?action=rippy", function (message) {
if(message) {
$('#rippy-says').raw().innerHTML = message;
$('#bubble').raw().style.display = "block";
} else {
$('#bubble').raw().style.display = "none";
}
}
);
2011-03-28 14:21:28 +00:00
}
function rippyclick() {
$('.rippywrap').remove();
}