- Google Chrome
brew cask install google-chrome
- Chrome canary -
brew cask install canary
- Firefox -
brew cask install firefox
- TorBrowser -
brew cask install torbrowser
This file contains 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
<select [ngModel]="field ||''"> | |
<option value="">Select field</option> | |
<option *ngFor="let property of properties" [ngValue]="property">{{property.name}}</option> | |
</select> |
This file contains 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
<select formControlName="field"> | |
<option [ngValue]="null">Select field</option> | |
<option *ngFor="let property of properties" [ngValue]="property">{{property.name}}</option> | |
</select> |
This file contains 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
getViewport(): any { | |
let win = window, | |
d = document, | |
e = d.documentElement, | |
g = d.getElementsByTagName('body')[0], | |
w = win.innerWidth || e.clientWidth || g.clientWidth, | |
h = win.innerHeight || e.clientHeight || g.clientHeight; | |
return {width: w, height: h}; | |
} |
This file contains 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 | |
// function to get image Alt tag | |
function get_img_alt( $image ) { | |
$img_alt = trim( strip_tags( get_post_meta( $image, '_wp_attachment_image_alt', true ) ) ); | |
return $img_alt; | |
} | |
// fucntion to get src of each image | |
function get_picture_srcs( $image, $mappings ) { |
This file contains 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
//Get page url | |
let url = document.location.href; | |
//Get canonical | |
const canonicalEl = document.querySelector('link[rel=canonical]'); | |
//if canonical tag present replace url | |
if(canonicalEl !== undefined) { | |
url = canonicalEl.href; | |
} |
This file contains 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
const value = condition ? 'some value' : 'another value'; |
This file contains 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
<div class="form-group"> | |
<label>Your Name</label> | |
[text* your-name class:form-control] | |
</div> | |
<div class="form-group"> | |
<label>Your Email</label> | |
[email* your-email class:form-control] | |
</div> | |
<div class="form-group"> |
This file contains 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
<select name="time" id="time"> | |
<option value="12:00am">12:00am</option> | |
<option value="12:30am">12:30am</option> | |
<option value="1:00am">1:00am</option> | |
<option value="1:30am">1:30am</option> | |
<option value="2:00am">2:00am</option> | |
<option value="2:30am">2:30am</option> | |
<option value="3:00am">3:00am</option> | |
<option value="3:30am">3:30am</option> | |
<option value="4:00am">4:00am</option> |