WIP: Note editing, markdown to html
[oweals/karmaworld.git] / karmaworld / apps / wysihtml5 / static / wysihtml5 / wysihtml-0.4.17 / src / commands / alignCenterStyle.js
1 (function(wysihtml5) {
2   var STYLE_STR  = "text-align: center;",
3       REG_EXP = /(\s|^)text-align\s*:\s*[^;\s]+;?/gi;
4
5   wysihtml5.commands.alignCenterStyle = {
6     exec: function(composer, command) {
7       return wysihtml5.commands.formatBlock.exec(composer, "formatBlock", null, null, null, STYLE_STR, REG_EXP);
8     },
9
10     state: function(composer, command) {
11       return wysihtml5.commands.formatBlock.state(composer, "formatBlock", null, null, null, STYLE_STR, REG_EXP);
12     }
13   };
14 })(wysihtml5);