Socket
Socket
Sign inDemoInstall

medium-editor

Package Overview
Dependencies
Maintainers
6
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

medium-editor - npm Package Compare versions

Comparing version 5.20.0 to 5.20.2

.npmrc

9

CHANGES.md

@@ -0,1 +1,10 @@

5.20.2 / 2016-06-17
==================
(5.20.1 was skipped because of a bad release)
* Fix test failure in Chrome 51 #1114
* Fix slow CSS selector #1115
* Improve documentation for toolbar.relativeContainer option #1122
* Fix cursor rendering incorrectly in Firefox #1113
5.20.0 / 2016-06-02

@@ -2,0 +11,0 @@ ==================

@@ -206,2 +206,3 @@ # MediumEditor Options (v5.0.0)

lastButtonClass: 'medium-editor-button-last',
relativeContainer: null,
standardizeSelectionStart: false,

@@ -255,2 +256,11 @@ static: false,

***
#### `relativeContainer`
**Default:** `null`
DOMElement to append the toolbar to instead of the body. When an element is passed the toolbar will also be positioned `relative` instead of `absolute`, which means the editor will not attempt to manually position the toolbar automatically.
**NOTE:**
* Using this in combination with the `static` option for toolbar is not explicitly supported and the behavior in this case is not defined.
***
#### `standardizeSelectionStart`

@@ -257,0 +267,0 @@ **Default:** `false`

2

package.json
{
"name": "medium-editor",
"version": "5.20.0",
"version": "5.20.2",
"author": "Davi Ferreira <hi@daviferreira.com>",

@@ -5,0 +5,0 @@ "contributors": [

@@ -140,5 +140,5 @@ # MediumEditor

lastButtonClass: 'medium-editor-button-last',
relativeContainer: null,
standardizeSelectionStart: false,
static: false,
relativeContainer: null,
/* options which only apply when static is true */

@@ -159,5 +159,5 @@ align: 'center',

* __lastButtonClass__: CSS class added to the last button in the toolbar. Default: `'medium-editor-button-last'`
* __relativeContainer__: DOMElement to append the toolbar to instead of the body. When passed, the toolbar will also be positioned `relative` instead of `absolute`. Default: `null`
* __standardizeSelectionStart__: enables/disables standardizing how the beginning of a range is decided between browsers whenever the selected text is analyzed for updating toolbar buttons status. Default: `false`
* __static__: enable/disable the toolbar always displaying in the same location relative to the medium-editor element. Default: `false`
* __relativeContainer__: Toolbar is appended relative to a given DOM-Node instead of appending it to the body and position it absolute.

@@ -164,0 +164,0 @@ ##### Options which only apply when the `static` option is being used:

@@ -35,6 +35,7 @@ describe('Elements TestCase', function () {

it('should set element data attr medium-editor-element to true', function () {
it('should set element data attr medium-editor-element to true and add medium-editor-element class', function () {
var editor = this.newMediumEditor('.editor');
expect(editor.elements.length).toBe(1);
expect(this.el.getAttribute('data-medium-editor-element')).toEqual('true');
expect(this.el.className).toBe('editor medium-editor-element');
});

@@ -69,7 +70,11 @@

it('should remove the medium-editor-element attribute', function () {
it('should remove the medium-editor-element attribute and class name', function () {
this.el.classList.add('temp-class');
expect(this.el.className).toBe('editor temp-class');
var editor = this.newMediumEditor('.editor');
expect(this.el.getAttribute('data-medium-editor-element')).toEqual('true');
expect(this.el.className).toBe('editor temp-class medium-editor-element');
editor.destroy();
expect(this.el.hasAttribute('data-medium-editor-element')).toBe(false);
expect(this.el.className).toBe('editor temp-class');
});

@@ -76,0 +81,0 @@

@@ -68,3 +68,3 @@ /*global _ */

expect(editor.elements.length).toEqual(nodeList.length);
expect(typeof nodeList.forEach).toBe('undefined');
expect(Array.isArray(nodeList)).toBe(false);
expect(typeof editor.elements.forEach).toBe('function');

@@ -71,0 +71,0 @@ editor.destroy();

@@ -141,3 +141,7 @@ /*global fireEvent, selectElementContentsAndFire */

expect(match[1]).toBe('data-placeholder');
} else {
}
// When these tests run in firefox in saucelabs, for some reason the content property of the
// placeholder is 'none'. Not sure why this happens, or why this is specific to saucelabs
// but for now, just skipping the assertion in this case
else if (placeholder !== 'none') {
expect(placeholder).toMatch(new RegExp('^[\'"]' + expectedValue + '[\'"]$'));

@@ -144,0 +148,0 @@ }

@@ -57,3 +57,3 @@ /*global fireEvent */

var editor = this.newMediumEditor('.editor');
expect(editor.elements[0].className).toBe('editor test-class test-class-2');
expect(editor.elements[0].className).toBe('editor test-class test-class-2 medium-editor-element');
});

@@ -184,3 +184,3 @@

editor.addElements(this.el);
expect(editor.elements[1].className).toBe('editor test-class test-class-2');
expect(editor.elements[1].className).toBe('editor test-class test-class-2 medium-editor-element');
});

@@ -187,0 +187,0 @@

@@ -416,2 +416,3 @@ (function () {

element.setAttribute('data-medium-editor-element', true);
element.classList.add('medium-editor-element');
element.setAttribute('role', 'textbox');

@@ -705,2 +706,3 @@ element.setAttribute('aria-multiline', true);

element.removeAttribute('data-medium-editor-element');
element.classList.remove('medium-editor-element');
element.removeAttribute('role');

@@ -707,0 +709,0 @@ element.removeAttribute('aria-multiline');

@@ -45,3 +45,14 @@ (function () {

if (el) {
el.classList.add('medium-editor-placeholder');
// https://github.com/yabwe/medium-editor/issues/234
// In firefox, styling the placeholder with an absolutely positioned
// pseudo element causes the cursor to appear in a bad location
// when the element is completely empty, so apply a different class to
// style it with a relatively positioned pseudo element
if (MediumEditor.util.isFF && el.childNodes.length === 0) {
el.classList.add('medium-editor-placeholder-relative');
el.classList.remove('medium-editor-placeholder');
} else {
el.classList.add('medium-editor-placeholder');
el.classList.remove('medium-editor-placeholder-relative');
}
}

@@ -53,2 +64,3 @@ },

el.classList.remove('medium-editor-placeholder');
el.classList.remove('medium-editor-placeholder-relative');
}

@@ -55,0 +67,0 @@ },

@@ -18,3 +18,3 @@ MediumEditor.parseVersionString = function (release) {

// grunt-bump looks for this:
'version': '5.20.0'
'version': '5.20.2'
}).version);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc