start new:
tmux
start new with session name:
tmux new -s myname
var Calendar = React.createClass({ | |
getDefaultProps: function() { | |
return { | |
prev_text: "Prev", | |
next_text: "Next", | |
month_format: "MMMM, YYYY", | |
month: undefined, | |
count: 2, | |
reserved: [], | |
onSelect: function(date) { |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
* { | |
font-size: 12px !important; | |
font-family: Ubuntu, "Lucida Grande", "Helvetica Neue", Arial, sans-serif !important; | |
} | |
/* Remove space before first tab */ | |
.tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox { | |
-moz-padding-end: 0 !important; |
export { default as Router } from './router'; | |
export { default as Link } from './link'; | |
export { default as Store } from './store'; |
var Modal = React.createClass({ | |
killClick: function(e) { | |
// clicks on the content shouldn't close the modal | |
e.stopPropagation(); | |
}, | |
componentDidMount: function() { | |
ModalCount += 1; | |
modalWindowLock(); | |
}, | |
handleBackdropClick: function() { |
class Alert extends React.Component { | |
render() { | |
return ( | |
<div className='alert'>alert</div> | |
) | |
}; | |
} | |
class Header extends React.Component { | |
render() { | |
return ( |
import React from 'react'; | |
import $ from 'jQuery'; | |
class Alert extends React.Component { | |
render() { | |
return ( | |
<div className='alert'>alert</div> | |
) | |
}; | |
} |
import $ from 'jquery'; | |
export default (src, dst) => { | |
let divider = 3, | |
$src = $(src), | |
$dst = $(dst), | |
$srcClone = $($src.clone()); | |
$srcClone.css({ | |
'position': 'absolute', |
vendor | |
composer.lock |
-apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif |