This file contains 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
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
</div> | |
</div> |
This file contains 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
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
</div> | |
</div> |
This file contains 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
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
<div class="col-sm-12 col-md-6 col-lg-3"><p>1</p></div> | |
</div> | |
</div> |
This file contains 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin media($queryString){ | |
@media #{$queryString} { | |
@content; | |
} | |
} |
This file contains 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin media($queryString){ | |
@media #{$queryString} { | |
@content; | |
} | |
} |
This file contains 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
<div class="red"></div> | |
<div class="orange"></div> | |
<div class="yellow"></div> | |
<div class="green"></div> | |
<div class="purple"></div> |
This file contains 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
<div class="red"></div> | |
<div class="orange"></div> | |
<div class="yellow"></div> | |
<div class="lime"></div> | |
<div class="green"></div> | |
<div class="turq"></div> | |
<div class="cyan"></div> | |
<div class="blue"></div> | |
<div class="indigo"></div> | |
<div class="violet"></div> |
This file contains 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
// Getting this error | |
// | |
// var html = React.renderToString(<Handler params={params}/>, document.body) | |
// ^ | |
// SyntaxError: Unexpected token < | |
// | |
// | |
// React | |
var React = require('react'); |
This file contains 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
'use strict'; | |
var webpack = require('webpack'); | |
module.exports = webpack({ | |
cache: true, | |
debug: false, | |
devtool: 'source-map', | |
entry: { | |
bundle: './demo/index.jsx' |
This file contains 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 React = require('react/addons'); | |
var babel = require('babel'); | |
var selfCleaningTimeout = { | |
componentDidUpdate: function() { | |
clearTimeout(this.timeoutID); | |
}, | |
setTimeout: function() { |