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 | |
| /** | |
| * Created by JetBrains PhpStorm. | |
| * User: truth4oll | |
| * Date: 20.11.13 | |
| * Time: 17:08 | |
| * To change this template use File | Settings | File Templates. | |
| */ | |
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
| function form_init(form) { | |
| form.find('input,textarea').on('focus',function(){ | |
| $(this).removeClass('error') | |
| //$(this).next().fadeOut(100) | |
| }) | |
| form.find('select').on('click',function(){ | |
| $(this).removeClass('error') |
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
| git fetch --all | |
| git reset --hard origin/master | |
| git pull origin master |
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
| //сначала делаем | |
| a = document.getElementsByClassName('profile_photo_hide') | |
| //далее выполнять следующий код, пока все фотки не удалятся | |
| for (j=0;j<20;j++){ | |
| for (i=0,length = a.length; i < length; i++){ | |
| a[i].click(); | |
| } | |
| } |