Skip to content

Commit

Permalink
5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nmielnik committed Aug 7, 2015
1 parent 44fa918 commit cfbf6c2
Show file tree
Hide file tree
Showing 7 changed files with 148 additions and 116 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
5.6.0 / 2015-08-07
==================
* Add new 'tim' theme for medium-editor toolbar
* Fix issue Chrome generated comment tags when pasting
* Fix issue where 'editableInput' is triggered multiple times when creating links


5.5.4 / 2015-08-04
==================
* Fix issue with anchor and selection inconsitencies in IE
Expand Down
3 changes: 2 additions & 1 deletion dist/css/themes/tim.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
color: #fff;
height: 60px;
min-width: 60px;
transition: background-color 0.2s ease-in, color 0.2s ease-in; }
-webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in;
transition: background-color 0.2s ease-in, color 0.2s ease-in; }
.medium-editor-toolbar li button:hover {
background-color: #030200;
color: #fff; }
Expand Down
1 change: 1 addition & 0 deletions dist/css/themes/tim.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

241 changes: 131 additions & 110 deletions dist/js/medium-editor.js

Large diffs are not rendered by default.

8 changes: 5 additions & 3 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": "5.5.4",
"version": "5.6.0",
"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 @@ -17,5 +17,5 @@ MediumEditor.parseVersionString = function (release) {

MediumEditor.version = MediumEditor.parseVersionString.call(this, ({
// grunt-bump looks for this:
'version': '5.5.4'
'version': '5.6.0'
}).version);

0 comments on commit cfbf6c2

Please sign in to comment.