- Doug Gaudieri, Senior Account Manager
- Jamie Kutzuba, Solutions Architect
- Laura Nederhoff, Solutions Architect
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
?({ | |
"locations": [{ | |
"lid": 585, | |
"name": "Library Hours:", | |
"category": "library", | |
"desc": "", | |
"url": "", | |
"contact": "", | |
"lat": "43.048366", | |
"long": "-76.090515", |
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
javascript:pc=location.protocol;hn=location.hostname;hn=((pc==='http:')?hn:hn.replace(/\./g,'-'));pt=location.port;pt=(pt?':'+pt:pt);pn=location.pathname;sn=location.search;hs=location.hash;void(location.href=pc+'//0-'+hn+'.library.lemoyne.edu'+pt+pn+sn+hs); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 copyToClipboard = str => { | |
const el = document.createElement('textarea'); // Create a <textarea> element | |
el.value = str; // Set its value to the string that you want copied | |
el.setAttribute('readonly', ''); // Make it readonly to be tamper-proof | |
el.style.position = 'absolute'; | |
el.style.left = '-9999px'; // Move outside the screen to make it invisible | |
document.body.appendChild(el); // Append the <textarea> element to the HTML document | |
const selected = | |
document.getSelection().rangeCount > 0 // Check if there is any content selected previously | |
? document.getSelection().getRangeAt(0) // Store selection if found |
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
<style> | |
.videoWrapper { | |
position: relative; | |
padding-bottom: 56.25%; /* 16:9 */ | |
padding-top: 25px; | |
height: 0; | |
} | |
.videoWrapper iframe { | |
position: absolute; |
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
{ | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
} | |
], | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"font_size": 12, |
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
// via Ethan Marcotte (10 December 2015) | |
// https://24ways.org/2015/putting-my-patterns-through-their-paces/ | |
// If the browser passes the test, then a class of supports-flex gets applied to our html element. | |
var doc = document.body || document.documentElement; | |
var style = doc.style; | |
if ( style.webkitFlexWrap == '' || | |
style.msFlexWrap == '' || | |
style.flexWrap == '' ) { |
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
// ---- | |
// Sass (v3.3.1) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.mycss { | |
color: black; | |
&--btn { | |
color: blue; | |
} |
NewerOlder