Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabeef committed Sep 4, 2016
1 parent 5c3226c commit 5f99312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions richeditor/src/main/assets/rich_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ RE.setUnderline = function() {
}

RE.setBullets = function() {
document.execCommand('InsertUnorderedList', false, null);
document.execCommand('insertUnorderedList', false, null);
}

RE.setNumbers = function() {
document.execCommand('InsertOrderedList', false, null);
document.execCommand('insertOrderedList', false, null);
}

RE.setTextColor = function(color) {
Expand Down

0 comments on commit 5f99312

Please sign in to comment.