View gist:02c39a3ac441589e4c07
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
$(document).ready(function(){ | |
// Create two variables: | |
// 1) Create a '<span></span>' element that we'll eventually put into the DOM | |
// 2) Cache the container already in the DOM where we'll put the span | |
var itemCountSpan = document.createElement("SPAN"), | |
cart = document.getElementById('cart-icon-wrapper'); | |
// Set the initial text and class for the span before we put into the DOM |
View DatabaseSeeder.php
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 | |
use Illuminate\Database\Seeder; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Filesystem\Filesystem; | |
class DatabaseSeeder extends Seeder { | |
/** | |
* Seeders to run. |
View gist:34e419a42040f24f7562
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
var elixir = require('laravel-elixir'); | |
var paths = { | |
'bower': './vendor/bower_components/' | |
}; | |
var paths = { | |
'fonts': 'resources/assets/fonts/', | |
'img': 'resources/assets/img/', | |
'svg': 'resources/assets/svg', | |
'sass': 'resources/assets/sass/', | |
'js': 'resources/assets/js/', |
View sba_counties.json
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
[ | |
{ | |
"county_name": null, | |
"description": null, | |
"feat_class": "Civil", | |
"feature_id": "36609", | |
"fips_class": "H1", | |
"fips_county_cd": "69", | |
"full_county_name": null, | |
"link_title": null, |
View Test object top above window top
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
$(document).on('scroll',function(){ | |
var winTop = $(window).scrollTop(); | |
var $object = $('.some-div'); | |
$object.each(function(){ | |
var objTopTrigger = this.offsetTop; | |
var objTopTriggerAdj = 400; | |
if (objTopTrigger + objTopTriggerAdj < winTop){ | |
$(this).addClass('some-class'); | |
} | |
if (objTopTrigger + objTopTriggerAdj > winTop){ |
View level-like
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
<script type="text/javascript"> | |
$(document).ready(function(){ | |
H = 0; | |
$('.foo').each(function(){ | |
if ($(this).innerHeight() > H){ | |
H = $(this).innerHeight(); | |
} | |
}); | |
$('.foo').height(H); | |
}); |
View variables-custom.less
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
/* Flat UI @design-modo */ | |
@fui-turq-lt: #1abc9c; | |
@fui-turq: #16a085; | |
@fui-green-lt: #2ecc71; | |
@fui-green: #27ae60; | |
@fui-blue-lt: #3498db; | |
@fui-blue: #2980b9; | |
@fui-purple-lt: #9b59b6; | |
@fui-purple: #8e44ad; | |
@fui-navy-lt: #34495e; |