mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
24 lines
627 B
PHP
24 lines
627 B
PHP
|
|
||
|
<footer>
|
||
|
<p><a id="github" href="https://github.com/broncowdd/BoZoN" title="<?php e('Fork me on github'); ?>" target="_blank"><span class="icon-github-circled" ></span></a></p>
|
||
|
<p id="version">BoZoN <?php echo VERSION; ?></p>
|
||
|
</footer>
|
||
|
|
||
|
<script>
|
||
|
// click on lightbox link
|
||
|
on('click','a[data-type]',function(event){
|
||
|
lb_show(this);
|
||
|
event.preventDefault();
|
||
|
event.stopPropagation();
|
||
|
return false;
|
||
|
})
|
||
|
|
||
|
// click on folder to ufold content on share page
|
||
|
on('click','.folder',function(){
|
||
|
toggleClass(this.nextElementSibling,'show');
|
||
|
toggleClass(this,'unfolded');
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|