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
{ | |
"leadData": { | |
"callCount": 71, | |
"costPerLead": 4.85, | |
"dailyAverageCallCount": 4.73, | |
"dailyAverageJobAppCount": 16.47, | |
"dailyTotalAverageCount": 21.2, | |
"jobAppCount": 247, | |
"totalCount": 318 | |
}, |
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="our-partners home"> | |
<div class="row-fluid mobile-pad"> | |
<div class="span12"> | |
<h1></h1> | |
<p></p> | |
</div> | |
</div> | |
<div class="mini-carousel clearfix icarousel"> | |
<div class="carousel-window port" style="overflow: hidden;"> |
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="our-partners home"> | |
<div class="row-fluid mobile-pad"> | |
<div class="span12"> | |
<h1></h1> | |
<p></p> | |
</div> | |
</div> | |
<div class="mini-carousel clearfix icarousel"> | |
<div class="carousel-window port" style="overflow: hidden;"> |
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="row lightgray-bg clients"> | |
<div class="text-center"> | |
<h3>clients</h3> | |
</div> | |
<div id="clients"> | |
<i class="fa fa-angle-left fa-5x"></i> | |
<i class="fa fa-angle-right fa-5x"></i> | |
<div class="icon-wrap"> | |
<ul id="clientlist"> | |
<li><span class="lucent-icon"></span></li> |
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(){ | |
function iconSlider() { | |
$('.fa-angle-right').click(function(){ | |
var $clientlistWidth = $("body").find('.icon-wrap').width(); | |
if ($clientlistWidth == 250 && parseInt($('#clientlist').css('right'), 10) < 2500) { | |
$('#clientlist').animate({'right': "+=250px" }); | |
console.log("list is 250px wide and right is less than 2500px"); |
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'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Elixir Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Elixir provides a clean, fluent API for defining some basic Gulp tasks | |
| for your Laravel application. By default, we are compiling the Less | |
| file for our application, as well as publishing vendor resources. |
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
<html> | |
<head> | |
<!-- @reload --> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>L2: Learn - Lead | John Maxwell</title> |
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 | |
Form::select('state',array( | |
'AL'=>'Alabama', | |
'AK'=>'Alaska', | |
'AZ'=>'Arizona', | |
'AR'=>'Arkansas', | |
'CA'=>'California', | |
'CO'=>'Colorado', | |
'CT'=>'Connecticut', |