WIP: Note editing, markdown to html
[oweals/karmaworld.git] / karmaworld / apps / wysihtml5 / static / wysihtml5 / wysihtml-0.4.17 / src / commands / insertUnorderedList.js
1 wysihtml5.commands.insertUnorderedList = {
2   exec: function(composer, command) {
3     wysihtml5.commands.insertList.exec(composer, command, "UL");
4   },
5
6   state: function(composer, command) {
7     return wysihtml5.commands.insertList.state(composer, command, "UL");
8   }
9 };