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
.blue { | |
background-color: rgb(66, 133, 244); | |
} | |
/* https://www.google.com/design/spec/components/buttons.html#buttons-raised-buttons */ | |
.disabledButton--dark { | |
background-color: rgba(255, 255, 255, .12); | |
} | |
/* |
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
import * as postcss from 'postcss'; | |
class MixinFrom { | |
constructor() { | |
this.plugin = this.plugin.bind(this); | |
} | |
plugin(css, result) { | |
const promises = []; |
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
import { mixin } from 'lodash'; | |
mixin({ | |
// Inspired by: https://gist.github.com/danro/7846358 | |
// Leverage requestAnimationFrame for throttling function calls instead of setTimeout for better perf. | |
throttleFramerate: function(callback) { | |
var wait = false; | |
var args = null; | |
var context = null; |
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
import { LayoutView } from 'marionette'; | |
import styles from './application.css!'; | |
import template from './application.hbs!'; | |
import _ from 'lodash'; | |
export default LayoutView.extend({ | |
el: 'main', | |
template, | |
templateHelpers: { | |
styles: styles |
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
.playlist { | |
} | |
.loading { | |
} | |
.error { | |
} |
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
Koyaanisqatsi Movie Full Soundtrack - Phillip Glass (1982),t-t8w08QNJM | |
Halo 4 OST - Beauty of Cortana,C585gsBarW8 | |
Games of Thrones - House Stark Theme,SZrDEUldGr0 | |
Owl City Rainbow Veins,2EsMHFXdLxI | |
Basil Poledouris - Riddle Of Steel / Riders Of Doom,onGWF8mz1Zw | |
Trans-Siberian Orchestra: Christmas Dreams,KrvGklFCb6c | |
Theophany - Time's End - Majora's Mask Remixed,F4jdLygR-dI | |
Stabilised Zelda: Symphony of the Goddesses- London 2013,VujV19LQh24 | |
Passenger - Let Her Go [Official Video],RBumgq5yVrA | |
Wayne County | Storm the gates of heaven | 01. Storm the gates of heaven,79fk08Ax774 |
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
_.mixin({ | |
// Inspired by: https://gist.github.com/danro/7846358 | |
// Leverage requestAnimationFrame for throttling function calls instead of setTimeout for better perf. | |
throttleFramerate: function(callback) { | |
var wait = false; | |
var args = null; | |
var context = null; | |
return function() { | |
if (!wait) { |
NewerOlder