dispatch/client/src/js/actions/environment.js
2015-12-29 00:34:32 +01:00

18 lines
329 B
JavaScript

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);
}