Added more dynamic behavior to the new plugin area. Added a funding yml file.
This commit is contained in:
@@ -220,5 +220,18 @@ function JRouter(link) {
|
||||
}
|
||||
?>
|
||||
return url+link;
|
||||
}
|
||||
}
|
||||
|
||||
// nice little dot trick :)
|
||||
jQuery(document).ready( function($) {
|
||||
var x=0;
|
||||
setInterval(function() {
|
||||
var dots = "";
|
||||
x++;
|
||||
for (var y=0; y < x%8; y++) {
|
||||
dots+=".";
|
||||
}
|
||||
$(".loading-dots").text(dots);
|
||||
} , 500);
|
||||
});
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user