Skip to content

Commit

Permalink
4.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
j0k3r committed Jun 10, 2015
1 parent e073753 commit caf3232
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
4.12.2 / 2015-06-10
==================
* Fix broken keyboard shortcuts


4.12.1 / 2015-06-02
==================
* Fix break with updateOnEmptySelection option for static toolbars
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medium-editor",
"version": "4.12.1",
"version": "4.12.2",
"homepage": "http://yabwe.github.io/medium-editor/",
"authors": [
"Davi Ferreira <hi@daviferreira.com>",
Expand Down
11 changes: 5 additions & 6 deletions dist/js/medium-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ var ButtonsData;
useQueryState: true,
contentDefault: '<b>B</b>',
contentFA: '<i class="fa fa-bold"></i>',
key: 'b'
key: 'B'
},
'italic': {
name: 'italic',
Expand All @@ -1164,7 +1164,7 @@ var ButtonsData;
useQueryState: true,
contentDefault: '<b><i>I</i></b>',
contentFA: '<i class="fa fa-italic"></i>',
key: 'i'
key: 'I'
},
'underline': {
name: 'underline',
Expand All @@ -1178,7 +1178,7 @@ var ButtonsData;
useQueryState: true,
contentDefault: '<b><u>U</u></b>',
contentFA: '<i class="fa fa-underline"></i>',
key: 'u'
key: 'U'
},
'strikethrough': {
name: 'strikethrough',
Expand Down Expand Up @@ -3462,7 +3462,7 @@ var AnchorForm;
tagNames: ['a'],
contentDefault: '<b>#</b>',
contentFA: '<i class="fa fa-link"></i>',
key: 'k',
key: 'K',

// Called when the button the toolbar is clicked
// Overrides ButtonExtension.handleClick
Expand Down Expand Up @@ -6147,7 +6147,6 @@ function MediumEditor(elements, options) {
this.preventSelectionUpdates = false;
},

// NOT DOCUMENTED - exposed as extension helper and for backwards compatability
checkSelection: function () {
if (this.toolbar) {
this.toolbar.checkState();
Expand Down Expand Up @@ -6445,7 +6444,7 @@ MediumEditor.version = (function (major, minor, revision) {
};
}).apply(this, ({
// grunt-bump looks for this:
'version': '4.12.1'
'version': '4.12.2'
}).version.split('.'));

return MediumEditor;
Expand Down
8 changes: 3 additions & 5 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.1",
"version": "4.12.2",
"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.1'
'version': '4.12.2'
}).version.split('.'));

0 comments on commit caf3232

Please sign in to comment.