Skip to content

Instantly share code, notes, and snippets.

View mpalmr's full-sized avatar

Matthew Palmer mpalmr

  • Compass Digital
  • Toronto
View GitHub Profile
@import "../vendor/neat/neat-helpers"
// Mobile Phones
$mobile: new-breakpoint(min-width 320px max-width 480px)
$mobile-portrait: new-breakpoint(max-width 320px)
$mobile-landscape: new-breakpoint(min-width 321px)
// Tablets
$tablet: new-breakpoint(min-width 768px max-width 1024px)
//$tablet-portrait:
$mobile-dimensions: min-width 320px max-width 480px
$mobile-portrait: new-breakpoint($mobile-min $mobile-max orientation portait 6)
.item {
padding: 0 18px;
border-top: 1px solid #ccc;
}
.item:first-of-type {
border-top: 0;
}
var myApp = (function (app, $) {
'use strict';
app.modules = app.modules || {};
app.modules.myModule = {
foo: 1,
bar: 2,
baz: 3,
/**
import * as d3 from "d3";
export default class Chart {
private elements: Array<Element>;
constructor(target: string|Element|NodeList) {
this.elements = Chart.parseTarget(target);
}
// Type definitions for bootstrap-tour
// Project: https://github.com/sorich87/bootstrap-tour/
// Definitions by: Matthew Palmer <https://github.com/mpalmr/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* @namespace bootstrap-tour
*/
declare module "bootstrap-tour" {
import jQuery = require("jquery");
var date = new Date()
var j = date.getDate()
var suf = ['th', 'st', 'nd', 'rd']
var v = j
var S = (suf[(v-20) % 10] || suf[v] || suf[0])
var months = ['January','February','March','April','May','June','July','August','September','October','November','December']
var F = months[date.getMonth()]
var Y = date.getFullYear()
var formatted_date = (F + ' ' + j+S + ', ' + Y)
this.selectedTokens = m.prop(Array.from(Array(this.tokens().length))
.map(() => m.prop()));