Install Package Control for easy package management.
- Open the console with
Ctrl+`
- Paste in the following:
<?php | |
// SETUP: | |
// 1. Customize all the settings (stripe api key, email settings, email text) | |
// 2. Put this code somewhere where it's accessible by a URL on your server. | |
// 3. Add the URL of that location to the settings at https://manage.stripe.com/#account/webhooks | |
// 4. Have fun! | |
// set your secret key: remember to change this to your live secret key in production | |
// see your keys here https://manage.stripe.com/account |
function CountrySelect(){ | |
$HTMLCode = "<select id=\"Country\" name=\"Country\">".Chr(13); | |
$HTMLCode .= "<option value=\"US\">United States of America</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AF\">Afghanistan</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AL\">Albania</option>".Chr(13); | |
$HTMLCode .= "<option value=\"DZ\">Algeria</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AS\">American Samoa</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AD\">Andorra</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AG\">Angola</option>".Chr(13); | |
$HTMLCode .= "<option value=\"AI\">Anguilla</option>".Chr(13); |
/* name, duration, timing function, delay, fill mode */ | |
-webkit-animation: fadeIn 700ms ease-in-out 1s both; | |
animation: fadeIn 700ms ease-in-out 1s both; | |
@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}} | |
@keyframes fadeIn{from{opacity:0}to{opacity:1}} |
RB.filter('daterange', function () | |
{ | |
return function(conversations, start_date, end_date) | |
{ | |
var result = []; | |
// date filters | |
var start_date = (start_date && !isNaN(Date.parse(start_date))) ? Date.parse(start_date) : 0; | |
var end_date = (end_date && !isNaN(Date.parse(end_date))) ? Date.parse(end_date) : new Date().getTime(); |
module ApplicationHelper | |
def current_class?(test_path) | |
return 'active' if request.path == test_path | |
'' | |
end | |
end |
# Reconfigures ActionDispatch's TLD handling dynamically based on the request | |
# host, so you don't have to mess with config.action_dispatch.tld_length for | |
# cross-device testing using xip.io and friends | |
# | |
# Examples: | |
# use Rack::HostBasedTldLength, /xip\.io/, 5 | |
class Rack::HostBasedTldLength | |
def initialize(app, host_pattern, host_tld_length) | |
@app = app |
Install Package Control for easy package management.
Ctrl+`
<?php | |
// UPDATE: Stefan from Stack Overflow has explained a better way to handle cart item data. | |
// See http://stackoverflow.com/a/32327810/470480 | |
// ---------------------- | |
/* | |
Instructions: |
var isMac = navigator.platform.toUpperCase().indexOf('MAC')>=0; | |
var isMacLike = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i)?true:false; | |
var isIOS = navigator.platform.match(/(iPhone|iPod|iPad)/i)?true:false; |
jQuery(function($) { | |
if ( !$('#new_request') ) return | |
var query = window.location.search.substring(1); | |
var vars = query.split("&"); | |
var match, fieldID; | |
for (var i=0; i<vars.length; i++) { | |
var pair = vars[i].split("="); | |
match = pair[0].match(/^request_fields\[([a-z_\d]+)\]$/) | |
if (match) { |