Skip to content

Commit

Permalink
Merge pull request #1243 from hasentopf/patch-1
Browse files Browse the repository at this point in the history
Update WALKTHROUGH docs
  • Loading branch information
j0k3r committed Nov 4, 2016
2 parents d2c21a7 + e5b1090 commit ea7b00b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/extensions/WALKTHROUGH-BUTTON.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ var HighlighterButton = MediumEditor.Extension.extend({
name: 'highlighter',

init: function () {
this.classApplier = rangy.createCssClassApplier('highlight', {
this.classApplier = rangy.createClassApplier('highlight', {
elementTagName: 'mark',
normalize: true
});
Expand Down Expand Up @@ -200,7 +200,7 @@ var HighlighterButton = MediumEditor.Extension.extend({
name: 'highlighter',

init: function () {
this.classApplier = rangy.createCssClassApplier('highlight', {
this.classApplier = rangy.createClassApplier('highlight', {
elementTagName: 'mark',
normalize: true
});
Expand Down Expand Up @@ -279,7 +279,7 @@ var HighlighterButton = MediumEditor.extensions.button.extend({
init: function () {
MediumEditor.extensions.button.prototype.init.call(this);

this.classApplier = rangy.createCssClassApplier('highlight', {
this.classApplier = rangy.createClassApplier('highlight', {
elementTagName: 'mark',
normalize: true
});
Expand Down

0 comments on commit ea7b00b

Please sign in to comment.