[Web] ROT13 footer html
This commit is contained in:
parent
15af981caa
commit
18ba4d2c9c
@ -183,7 +183,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
<div class="container footer">
|
<div class="container footer">
|
||||||
<?php if (!empty($UI_TEXTS['ui_footer'])) { ?>
|
<?php if (!empty($UI_TEXTS['ui_footer'])) { ?>
|
||||||
<hr><?=$UI_TEXTS['ui_footer'];?>
|
<hr><span class="footer-text-enc"><?=str_rot13($UI_TEXTS['ui_footer']);?></span>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
@ -24,7 +24,14 @@ $(document).ready(function() {
|
|||||||
$(this).closest("form").find('[data-pwgen-field]').attr('type', 'text');
|
$(this).closest("form").find('[data-pwgen-field]').attr('type', 'text');
|
||||||
$(this).closest("form").find('[data-pwgen-field]').val(random_passwd);
|
$(this).closest("form").find('[data-pwgen-field]').val(random_passwd);
|
||||||
});
|
});
|
||||||
|
function str_rot13(str) {
|
||||||
|
return (str + '').replace(/[a-z]/gi, function(s){
|
||||||
|
return String.fromCharCode(s.charCodeAt(0) + (s.toLowerCase() < 'n' ? 13 : -13))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
$(".footer-text-enc").html(function(){
|
||||||
|
return str_rot13($(".footer-text-enc").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) {
|
||||||
if(typeof interval === 'undefined') {
|
if(typeof interval === 'undefined') {
|
||||||
|
Loading…
Reference in New Issue
Block a user