mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-28 10:34:53 +00:00
Add CSS class to wagtail richtext editor buttons.
This commit is contained in:
parent
8ffe4578a3
commit
33dc914f01
4 changed files with 4 additions and 4 deletions
|
|
@ -17,7 +17,7 @@
|
|||
return $(node).parents('a').get(0);
|
||||
};
|
||||
|
||||
button = $('<span></span>');
|
||||
button = jQuery('<span class="' + this.widgetName + '"></span>');
|
||||
button.hallobutton({
|
||||
uuid: this.options.uuid,
|
||||
editable: this.options.editable,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
var button, widget;
|
||||
|
||||
widget = this;
|
||||
button = $('<span></span>');
|
||||
button = jQuery('<span class="' + this.widgetName + '"></span>');
|
||||
button.hallobutton({
|
||||
uuid: this.options.uuid,
|
||||
editable: this.options.editable,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
var button, widget;
|
||||
|
||||
widget = this;
|
||||
button = $('<span></span>');
|
||||
button = jQuery('<span class="' + this.widgetName + '"></span>');
|
||||
button.hallobutton({
|
||||
uuid: this.options.uuid,
|
||||
editable: this.options.editable,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
var button, widget;
|
||||
|
||||
widget = this;
|
||||
button = $('<span></span>');
|
||||
button = jQuery('<span class="' + this.widgetName + '"></span>');
|
||||
button.hallobutton({
|
||||
uuid: this.options.uuid,
|
||||
editable: this.options.editable,
|
||||
|
|
|
|||
Loading…
Reference in a new issue