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
var Fluxxor = require('fluxxor'); | |
var _ = require('underscore'); | |
// A FluxClient is a special Fluxxor.Store constructor that is a wrapper around a 'client' object. | |
// Client objects are generally an object containing all the server calls your app can make | |
// FluxClient allows you to listen for Fluxxor actions and cause them to trigger requests in the client, | |
// this way your actions can remain pure and don't have to call the client directly. | |
// It can also dispatch Fluxxor actions when the client request begins and upon request success/failure | |
// createFluxClient creates a FluxClient constructor from two arguments: |
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
/* colors from Google Material Design | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette | |
*/ | |
@red-50: #fde0dc; | |
@red-100: #f9bdbb; | |
@red-200: #f69988; | |
@red-300: #f36c60; | |
@red-400: #e84e40; | |
@red-500: #e51c23; |
NewerOlder