jrm2k6/react-markdown-editor

View on GitHub
src/actions/MarkdownEditorActions.js

Summary

Maintainability
A
0 mins
Test Coverage
var Reflux = require('reflux');

var MarkdownEditorActions = Reflux.createActions([
    'clearSelection',
    'clickEditorTab',
    'clickPreviewTab',
    'makeBold',
    'makeImage',
    'makeItalic',
    'makeLink',
    'makeList',
    'makeHeader',
    'makeSubHeader',
    'makeUnderline',
    'setSelection'
]);

module.exports = MarkdownEditorActions;