Skip to content

Commit 4ba4fff

Browse files
committed
5.23.1
1 parent ac28fa4 commit 4ba4fff

5 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
5.23.1 / 2017-06-27
2+
==================
3+
* Remove src from bower ignored files #1330
4+
* Add label-checkbox relation in CreateLink form #1275 #1340
5+
6+
17
5.23.0 / 2017-03-02
28
==================
39
* Only add schemes to URLs with hostnames #1258

dist/js/medium-editor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3764,8 +3764,8 @@ MediumEditor.extensions = {};
37643764
// figure out how to deprecate? also consider `fa-` icon default implcations.
37653765
template.push(
37663766
'<div class="medium-editor-toolbar-form-row">',
3767-
'<input type="checkbox" class="medium-editor-toolbar-anchor-target">',
3768-
'<label>',
3767+
'<input type="checkbox" class="medium-editor-toolbar-anchor-target" id="medium-editor-toolbar-anchor-target-field-' + this.getEditorId() + '">',
3768+
'<label for="medium-editor-toolbar-anchor-target-field-' + this.getEditorId() + '">',
37693769
this.targetCheckboxText,
37703770
'</label>',
37713771
'</div>'
@@ -7869,7 +7869,7 @@ MediumEditor.parseVersionString = function (release) {
78697869

78707870
MediumEditor.version = MediumEditor.parseVersionString.call(this, ({
78717871
// grunt-bump looks for this:
7872-
'version': '5.23.0'
7872+
'version': '5.23.1'
78737873
}).version);
78747874

78757875
return MediumEditor;

dist/js/medium-editor.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "medium-editor",
3-
"version": "5.23.0",
3+
"version": "5.23.1",
44
"author": "Davi Ferreira <hi@daviferreira.com>",
55
"contributors": [
66
{

src/js/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ MediumEditor.parseVersionString = function (release) {
1515

1616
MediumEditor.version = MediumEditor.parseVersionString.call(this, ({
1717
// grunt-bump looks for this:
18-
'version': '5.23.0'
18+
'version': '5.23.1'
1919
}).version);

0 commit comments

Comments
 (0)