Používáme verzi 3.5.3 http://select2.github.io/select2/
Mohli bychom ale zkusit nejnovější verzi
| /** | |
| * Executing a function after the user has stopped typing for a specified amount | |
| * of time. Usage: | |
| * $('input').keyup(function() { | |
| * delay(function(){ | |
| * alert('Time elapsed!'); | |
| * }, 1000 ); | |
| * }); | |
| */ | |
| var delay = (function(){ |
| <?php | |
| namespace App; | |
| use Nette\Forms\Controls; | |
| class Utils { | |
| /** | |
| * Naformatuje cislo jako menu. |
Používáme verzi 3.5.3 http://select2.github.io/select2/
Mohli bychom ale zkusit nejnovější verzi
As pointed out by @johntyree in the comments, using git reflog is easier and more reliable. Thanks for the suggestion!
$ git reflog
1ed7510 HEAD@{1}: checkout: moving from develop to 1ed7510
3970d09 HEAD@{2}: checkout: moving from b-fix-build to develop
1ed7510 HEAD@{3}: commit: got everything working the way I want
70b3696 HEAD@{4}: commit: upgrade rails, do some refactoring
| Nalezení: | |
| find . -name "*" -type "f" | xargs grep -P '(?=.*?isset)(?=.*?eval)(?=.*?\[\d+\])' | |
| Odstranění: | |
| find . -name "*" -type "f" | xargs grep -P '<\?php\s+\$sF=[^\?]+\?>' |