|
@@ -48,7 +48,11 @@ $(document).ready(function() {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
$(".rot-enc").html(function(){
|
|
$(".rot-enc").html(function(){
|
|
- return str_rot13($(this).text())
|
|
|
|
|
|
+ footer_html = $(this).html();
|
|
|
|
+ footer_html = footer_html.replace(/</g, '<').replace(/>/g, '>')
|
|
|
|
+ .replace(/&/g, '&').replace(/&nzc;/g, '&')
|
|
|
|
+ .replace(/"/g, '"').replace(/'/g, "'");
|
|
|
|
+ return str_rot13(footer_html)
|
|
});
|
|
});
|
|
// https://stackoverflow.com/questions/4399005/implementing-jquerys-shake-effect-with-animate
|
|
// https://stackoverflow.com/questions/4399005/implementing-jquerys-shake-effect-with-animate
|
|
function shake(div,interval,distance,times) {
|
|
function shake(div,interval,distance,times) {
|