This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('button[data-popup]').click(function(){ | |
| $('.popup[data-popup="' + $(this).data('popup') + '"]').fadeIn('fast'); | |
| }); | |
| $('.popup .close').click(function() { | |
| $(this).parent().parent().fadeOut('fast'); | |
| }); | |
| $( '.popup' ).mousedown(function(e) { | |
| if (!$(e.target).closest('.window').length ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get install -y vim git curl wget unzip zip gcc build-essential make | |
| sudo apt-get install software-properties-common | |
| curl -O http://vestacp.com/pub/vst-install.sh | |
| bash vst-install.sh --nginx yes --apache yes --phpfpm no --named yes --remi yes --vsftpd yes --proftpd no --iptables yes --fail2ban yes --quota no --exim yes --dovecot yes --spamassassin no --clamav no --softaculous no --mysql yes --postgresql no |
OlderNewer