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
// https://stackoverflow.com/questions/7341865/checking-if-jquery-is-loaded-using-javascript | |
$(document).ready(function(){ | |
if (jQuery) { | |
// jQuery is loaded | |
alert("Yeah!"); | |
} else { | |
// jQuery is not loaded | |
alert("Doesn't Work"); | |
} |
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
.full-bleed { | |
width: 100vw; | |
margin-left: 50%; | |
transform: translateX(-50%); | |
} | |
/* https://andy-bell.design/wrote/creating-a-full-bleed-css-utility/ */ |
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
$( document ).ready(function() { | |
var discreteElements = document.getElementsByClassName('animate-this') | |
for (var i = 0; i < discreteElements.length; i++) { | |
new Waypoint({ | |
element: discreteElements[i], | |
handler: function() { | |
this.element.classList.add("animation"); | |
}, | |
offset: '50%' | |
}); |
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
scss/.sass-cache | |
scss/.sass-cache/* | |
scss/*/.sass-cache | |
scss/*/*/.sass-cache |
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
<?php | |
/* Item formatter | |
============== | |
This script takes data in a set of line-delimited items, as follows: | |
Arthur Arthurson | |
From: Phoenix, AZ | |
Major: Political Science |
NewerOlder