dispatch/client/src/js/actions/environment.js

18 lines
329 B
JavaScript
Raw Normal View History

2015-12-28 23:34:32 +00:00
import * as actions from '../actions';
export function setEnvironment(key, value) {
return {
type: actions.SET_ENVIRONMENT,
key,
value
};
}
export function setWrapWidth(width) {
return setEnvironment('wrapWidth', width);
}
export function setCharWidth(width) {
return setEnvironment('charWidth', width);
}