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
cd C:\OpenServer\domains | |
mkdir lara.loc | |
composer create-project laravel/laravel lara.loc --prefer-dist | |
# after successfull installing try to open http://lara.loc/public/ on browser |
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
/** | |
* Executes given callback only if some element found by given selector | |
* | |
* @param {String} selector | |
* @param {Function} cb | |
*/ | |
window.anyway = function (selector, cb) { | |
var | |
interval = setInterval(function () { | |
var el = $(selector); |
NewerOlder