medium-editor
Advanced tools
Comparing version 4.12.0 to 4.12.1
{ | ||
"name": "medium-editor", | ||
"version": "4.12.0", | ||
"version": "4.12.1", | ||
"homepage": "http://yabwe.github.io/medium-editor/", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -0,1 +1,6 @@ | ||
4.12.1 / 2015-06-02 | ||
================== | ||
* Fix break with updateOnEmptySelection option for static toolbars | ||
4.12.0 / 2015-06-01 | ||
@@ -2,0 +7,0 @@ ================== |
{ | ||
"name": "medium-editor", | ||
"version": "4.12.0", | ||
"version": "4.12.1", | ||
"author": "Davi Ferreira <hi@daviferreira.com>", | ||
@@ -5,0 +5,0 @@ "contributors": [ |
@@ -212,3 +212,3 @@ /*global Util */ | ||
var selection = ownerDocument.getSelection(); | ||
if (selection.rangeCount === 0 || true === selection.isCollapsed) { | ||
if (selection.rangeCount === 0) { | ||
return null; | ||
@@ -215,0 +215,0 @@ } |
@@ -14,3 +14,3 @@ /*global MediumEditor */ | ||
// grunt-bump looks for this: | ||
'version': '4.12.0' | ||
'version': '4.12.1' | ||
}).version.split('.')); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1353244