###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Vanilla Debounce esnextbin
| /** | |
| * Returns value of specified URL parameter. | |
| * @param {String} name Query parameter to return value of. | |
| * @return {String} String of query parameter or null / 0. | |
| */ | |
| getUrlParameter = function(name){ | |
| var results = new RegExp('[\\?&]' + name + '=([^&#?]*)').exec(window.location.href); | |
| if (results==null){ return undefined; } | |
| else { return results[1] || 0; } | |
| } |