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 | |
/** | |
* Premailer API PHP class | |
* Premailer is a library/service for making HTML more palatable for various inept email clients, in particular GMail | |
* Primary function is to convert style tags into equivalent inline styles so styling can survive <head> tag removal | |
* Premailer is owned by Dialect Communications group | |
* @link http://premailer.dialect.ca/api | |
* @author Marcus Bointon <[email protected]> | |
*/ | |
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
javascript: (function(){window.location='https://developers.facebook.com/tools/debug/og/object?q='+escape(window.location.href);})(); |
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
<!DOCTYPE html> | |
<!--[if lte IE 8]><html lang="en" class="no-js oldie"><![endif]--> | |
<!--[if gte IE 9]<!--><html class='no-js' lang='en'><!--<![endif]--> | |
<head> | |
<meta charset='utf-8' /> | |
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' /> | |
<title>Title</title> | |
<meta content='width=device-width, initial-scale=1.0' name='viewport' /> | |
</head> |
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
{ | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Color Scheme - Default/Pastels on Dark.tmTheme", | |
"draw_indent_guides": false, | |
"fade_fold_buttons": false, | |
"font_face": "Monaco", | |
"font_options": | |
[ | |
"no_antialias" | |
], |
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
$("a[href^='http']:not([href*='" + window.location.hostname + "'])").attr("target","_blank"); |
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
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
<meta name="apple-mobile-web-app-title" content="360"> | |
<meta name="viewport" content="user-scalable=no"> | |
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0"> | |
<meta name="viewport" content="width=320.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
/* JavaScript: US currency helper functions | |
-------------------------------------------------------*/ | |
/** | |
* Formats any number, string or HTML string to a number with two trailing decimals | |
* @param {String} html Any number, string or HTML string | |
* @return {Number} Returns a number with two trailing decimals | |
*/ | |
var toCurrency = function(html) { | |
var currency = html.match(/[\d\.]+/g); |
NewerOlder