Skip to content

Commit

Permalink
4.12.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nmielnik committed Aug 18, 2015
1 parent c170f2f commit f2abddc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4.12.10 / 2015-08-18
4.12.11 / 2015-08-18
==================
* Ensure all attributes are copied from textareas to divs
* Ensure textarea ids are unique on entire page
Expand Down
4 changes: 2 additions & 2 deletions dist/js/medium-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -5928,7 +5928,7 @@ function MediumEditor(elements, options) {
div.id = uniqueId;
div.innerHTML = textarea.value;

textarea.setAttribute('medium-editor-textarea-id', id);
textarea.setAttribute('medium-editor-textarea-id', uniqueId);

// re-create all attributes from the textearea to the new created div
for (var i = 0, n = atts.length; i < n; i++) {
Expand Down Expand Up @@ -6711,7 +6711,7 @@ MediumEditor.version = (function (major, minor, revision) {
};
}).apply(this, ({
// grunt-bump looks for this:
'version': '4.12.10'
'version': '4.12.11'
}).version.split('.'));

return MediumEditor;
Expand Down
4 changes: 2 additions & 2 deletions dist/js/medium-editor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medium-editor",
"version": "4.12.10",
"version": "4.12.11",
"author": "Davi Ferreira <hi@daviferreira.com>",
"contributors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ MediumEditor.version = (function (major, minor, revision) {
};
}).apply(this, ({
// grunt-bump looks for this:
'version': '4.12.10'
'version': '4.12.11'
}).version.split('.'));

0 comments on commit f2abddc

Please sign in to comment.