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
/* | |
* Simple jQuery function for email obfuscation | |
* | |
*<a href="mailto:some#zavinac#email.cz" target="_blank" title="Email link">some#zavinac#email.cz</a> | |
* | |
*/ | |
jQuery(function(){ | |
$("a[href^='mailto:']").each(function(){ | |
var $repl = $(this).attr('href'); |
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
/* | |
* example of html structure: | |
* | |
* <div class="row row-same-height"> | |
* <div class="col-sm-6 col-xs-12"> | |
* <div class="same-height-item">...</div> | |
* </div> | |
* <div class="col-sm-6 col-xs-12"> | |
* <div class="same-height-item">...</div> | |
* </div> |
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
<?php | |
namespace App\AdminModule\Presenters; | |
use Nette, | |
App\Model, | |
Nette\Application\Responses, | |
Net_SSH2, //pear phpseclib 0.3.9. composer: phpseclib/phpseclib | |
Net_SCP; |
NewerOlder