WIP: Note editing, markdown to html
[oweals/karmaworld.git] / karmaworld / apps / wysihtml5 / static / wysihtml5 / wysihtml-0.4.17 / src / commands / justifyCenter.js
1 (function(wysihtml5) {
2   var CLASS_NAME  = "wysiwyg-text-align-center",
3       REG_EXP     = /wysiwyg-text-align-[0-9a-z]+/g;
4
5   wysihtml5.commands.justifyCenter = {
6     exec: function(composer, command) {
7       return wysihtml5.commands.formatBlock.exec(composer, "formatBlock", null, CLASS_NAME, REG_EXP);
8     },
9
10     state: function(composer, command) {
11       return wysihtml5.commands.formatBlock.state(composer, "formatBlock", null, CLASS_NAME, REG_EXP);
12     }
13   };
14 })(wysihtml5);