mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
|
function say() {
|
||
|
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";
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function rippyclick() {
|
||
|
$('.rippywrap').remove();
|
||
|
}
|