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 doneOrNot(board){ | |
// var boardForRegBuilder = []; | |
// boardForRegBuilder = deepCopy(board); | |
// console.log("boardForRegBuilder is " + boardForRegBuilder); | |
// function deepCopy(obj) { | |
// if (Object.prototype.toString.call(obj) === '[object Array]') { | |
// var out = [], i = 0, len = obj.length; | |
// for ( ; i < len; i++ ) { |
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
\travel-site | |
├── app | |
| ├── assets | |
| | ├── images | |
| | | ├── first-trip-hi-dpi-i.jpg | |
| | | ├── first-trip-hi-dpi.jpg | |
| | | ├── first-trip-i.jpg | |
| | | ├── first-trip-low-res-i.jpg | |
| | | ├── first-trip-low-res.jpg | |
| | | ├── first-trip.jpg |
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
<header> | |
<div class="hamburger-container"> | |
<div></div> | |
<div></div> | |
<div></div> | |
<input type="checkbox"> | |
<nav> | |
<ul> | |
<li></li> | |
<li></li> |
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
body { | |
background: #262f43; | |
margin: 0; | |
padding: 0; | |
} | |
header { | |
height: 60px; | |
width: 100%; | |
background: yellow; |
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
input[type="checkbox"] { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
margin: 0; | |
box-shadow: 0px 2px 5px 5px rgba(0,0,0, .3); |
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
input[type="checkbox"] { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
margin: 0; | |
box-shadow: 0px 2px 5px 5px rgba(0,0,0, .3); |
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
<header> | |
<div class="hamburger-container"> | |
<div></div> | |
<div></div> | |
<div></div> | |
<input type="checkbox"> | |
<nav> | |
<ul> | |
<li> | |
Item 1 |
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
var current_page = 1; | |
var awaiting = false; | |
function infinite_is_in_view() { | |
var scrollTop = $(window).scrollTop(), | |
elementOffset = $('.infinite-more-link.blog').offset().top, | |
distance = (elementOffset - scrollTop); | |
if (distance < $(window).height()) { | |
if (!awaiting) { | |
awaiting = true; |
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
{ | |
"Carbon Fields Get User Meta": { | |
"prefix": "carbongetusermeta", | |
"body": [ | |
"carbon_get_user_meta( get_the_author_meta( 'ID' ), 'crb_${1:field name}' )" | |
], | |
"description": "Carbon Fields Get User Meta" | |
}, | |
"Carbon Fields Get Post Meta": { | |
"prefix": "carbongetpostmeta", |
OlderNewer