mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 11:22:38 +01:00
upgrade to CodeMirror 5.37
This commit is contained in:
parent
26979d89bd
commit
75b148b307
@ -1,4 +1,5 @@
|
|||||||
# CodeMirror
|
# CodeMirror
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/codemirror/CodeMirror.svg)](https://travis-ci.org/codemirror/CodeMirror)
|
[![Build Status](https://travis-ci.org/codemirror/CodeMirror.svg)](https://travis-ci.org/codemirror/CodeMirror)
|
||||||
[![NPM version](https://img.shields.io/npm/v/codemirror.svg)](https://www.npmjs.org/package/codemirror)
|
[![NPM version](https://img.shields.io/npm/v/codemirror.svg)](https://www.npmjs.org/package/codemirror)
|
||||||
[![Join the chat at https://gitter.im/codemirror/CodeMirror](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/codemirror/CodeMirror)
|
[![Join the chat at https://gitter.im/codemirror/CodeMirror](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/codemirror/CodeMirror)
|
||||||
@ -28,6 +29,19 @@ The CodeMirror community aims to be welcoming to everybody. We use the
|
|||||||
(1.1)](http://contributor-covenant.org/version/1/1/0/) as our code of
|
(1.1)](http://contributor-covenant.org/version/1/1/0/) as our code of
|
||||||
conduct.
|
conduct.
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
Either get the [zip file](https://codemirror.net/codemirror.zip) with
|
||||||
|
the latest version, or make sure you have [Node](https://nodejs.org/)
|
||||||
|
installed and run:
|
||||||
|
|
||||||
|
npm install codemirror
|
||||||
|
|
||||||
|
**NOTE**: This is the source repository for the library, and not the
|
||||||
|
distribution channel. Cloning it is not the recommended way to install
|
||||||
|
the library, and will in fact not work unless you also run the build
|
||||||
|
step.
|
||||||
|
|
||||||
### Quickstart
|
### Quickstart
|
||||||
|
|
||||||
To build the project, make sure you have Node.js installed (at least version 6)
|
To build the project, make sure you have Node.js installed (at least version 6)
|
||||||
|
41
src/lib/codemirror/lib/codemirror.js
vendored
41
src/lib/codemirror/lib/codemirror.js
vendored
@ -4783,7 +4783,7 @@ function addChangeToHistory(doc, change, selAfter, opId) {
|
|||||||
|
|
||||||
if ((hist.lastOp == opId ||
|
if ((hist.lastOp == opId ||
|
||||||
hist.lastOrigin == change.origin && change.origin &&
|
hist.lastOrigin == change.origin && change.origin &&
|
||||||
((change.origin.charAt(0) == "+" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||
|
((change.origin.charAt(0) == "+" && hist.lastModTime > time - (doc.cm ? doc.cm.options.historyEventDelay : 500)) ||
|
||||||
change.origin.charAt(0) == "*")) &&
|
change.origin.charAt(0) == "*")) &&
|
||||||
(cur = lastChangeEvent(hist, hist.lastOp == opId))) {
|
(cur = lastChangeEvent(hist, hist.lastOp == opId))) {
|
||||||
// Merge this change into the last event
|
// Merge this change into the last event
|
||||||
@ -7312,8 +7312,8 @@ function leftButtonStartDrag(cm, event, pos, behavior) {
|
|||||||
var dragEnd = operation(cm, function (e) {
|
var dragEnd = operation(cm, function (e) {
|
||||||
if (webkit) { display.scroller.draggable = false }
|
if (webkit) { display.scroller.draggable = false }
|
||||||
cm.state.draggingText = false
|
cm.state.draggingText = false
|
||||||
off(document, "mouseup", dragEnd)
|
off(display.wrapper.ownerDocument, "mouseup", dragEnd)
|
||||||
off(document, "mousemove", mouseMove)
|
off(display.wrapper.ownerDocument, "mousemove", mouseMove)
|
||||||
off(display.scroller, "dragstart", dragStart)
|
off(display.scroller, "dragstart", dragStart)
|
||||||
off(display.scroller, "drop", dragEnd)
|
off(display.scroller, "drop", dragEnd)
|
||||||
if (!moved) {
|
if (!moved) {
|
||||||
@ -7322,7 +7322,7 @@ function leftButtonStartDrag(cm, event, pos, behavior) {
|
|||||||
{ extendSelection(cm.doc, pos, null, null, behavior.extend) }
|
{ extendSelection(cm.doc, pos, null, null, behavior.extend) }
|
||||||
// Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)
|
// Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)
|
||||||
if (webkit || ie && ie_version == 9)
|
if (webkit || ie && ie_version == 9)
|
||||||
{ setTimeout(function () {document.body.focus(); display.input.focus()}, 20) }
|
{ setTimeout(function () {display.wrapper.ownerDocument.body.focus(); display.input.focus()}, 20) }
|
||||||
else
|
else
|
||||||
{ display.input.focus() }
|
{ display.input.focus() }
|
||||||
}
|
}
|
||||||
@ -7337,8 +7337,8 @@ function leftButtonStartDrag(cm, event, pos, behavior) {
|
|||||||
dragEnd.copy = !behavior.moveOnDrag
|
dragEnd.copy = !behavior.moveOnDrag
|
||||||
// IE's approach to draggable
|
// IE's approach to draggable
|
||||||
if (display.scroller.dragDrop) { display.scroller.dragDrop() }
|
if (display.scroller.dragDrop) { display.scroller.dragDrop() }
|
||||||
on(document, "mouseup", dragEnd)
|
on(display.wrapper.ownerDocument, "mouseup", dragEnd)
|
||||||
on(document, "mousemove", mouseMove)
|
on(display.wrapper.ownerDocument, "mousemove", mouseMove)
|
||||||
on(display.scroller, "dragstart", dragStart)
|
on(display.scroller, "dragstart", dragStart)
|
||||||
on(display.scroller, "drop", dragEnd)
|
on(display.scroller, "drop", dragEnd)
|
||||||
|
|
||||||
@ -7470,8 +7470,8 @@ function leftButtonSelect(cm, event, start, behavior) {
|
|||||||
counter = Infinity
|
counter = Infinity
|
||||||
e_preventDefault(e)
|
e_preventDefault(e)
|
||||||
display.input.focus()
|
display.input.focus()
|
||||||
off(document, "mousemove", move)
|
off(display.wrapper.ownerDocument, "mousemove", move)
|
||||||
off(document, "mouseup", up)
|
off(display.wrapper.ownerDocument, "mouseup", up)
|
||||||
doc.history.lastSelOrigin = null
|
doc.history.lastSelOrigin = null
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7481,8 +7481,8 @@ function leftButtonSelect(cm, event, start, behavior) {
|
|||||||
})
|
})
|
||||||
var up = operation(cm, done)
|
var up = operation(cm, done)
|
||||||
cm.state.selectingText = up
|
cm.state.selectingText = up
|
||||||
on(document, "mousemove", move)
|
on(display.wrapper.ownerDocument, "mousemove", move)
|
||||||
on(document, "mouseup", up)
|
on(display.wrapper.ownerDocument, "mouseup", up)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used when mouse-selecting to adjust the anchor to the proper side
|
// Used when mouse-selecting to adjust the anchor to the proper side
|
||||||
@ -9005,7 +9005,7 @@ ContentEditableInput.prototype.setUneditable = function (node) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
ContentEditableInput.prototype.onKeyPress = function (e) {
|
ContentEditableInput.prototype.onKeyPress = function (e) {
|
||||||
if (e.charCode == 0) { return }
|
if (e.charCode == 0 || this.composing) { return }
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
if (!this.cm.isReadOnly())
|
if (!this.cm.isReadOnly())
|
||||||
{ operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0) }
|
{ operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0) }
|
||||||
@ -9187,13 +9187,10 @@ TextareaInput.prototype.init = function (display) {
|
|||||||
var this$1 = this;
|
var this$1 = this;
|
||||||
|
|
||||||
var input = this, cm = this.cm
|
var input = this, cm = this.cm
|
||||||
|
this.createField(display)
|
||||||
|
var te = this.textarea
|
||||||
|
|
||||||
// Wraps and hides input textarea
|
display.wrapper.insertBefore(this.wrapper, display.wrapper.firstChild)
|
||||||
var div = this.wrapper = hiddenTextarea()
|
|
||||||
// The semihidden textarea that is focused when the editor is
|
|
||||||
// focused, and receives input.
|
|
||||||
var te = this.textarea = div.firstChild
|
|
||||||
display.wrapper.insertBefore(div, display.wrapper.firstChild)
|
|
||||||
|
|
||||||
// Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
|
// Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
|
||||||
if (ios) { te.style.width = "0px" }
|
if (ios) { te.style.width = "0px" }
|
||||||
@ -9260,6 +9257,14 @@ TextareaInput.prototype.init = function (display) {
|
|||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
|
TextareaInput.prototype.createField = function (_display) {
|
||||||
|
// Wraps and hides input textarea
|
||||||
|
this.wrapper = hiddenTextarea()
|
||||||
|
// The semihidden textarea that is focused when the editor is
|
||||||
|
// focused, and receives input.
|
||||||
|
this.textarea = this.wrapper.firstChild
|
||||||
|
};
|
||||||
|
|
||||||
TextareaInput.prototype.prepareSelection = function () {
|
TextareaInput.prototype.prepareSelection = function () {
|
||||||
// Redraw the selection and/or cursor
|
// Redraw the selection and/or cursor
|
||||||
var cm = this.cm, display = cm.display, doc = cm.doc
|
var cm = this.cm, display = cm.display, doc = cm.doc
|
||||||
@ -9653,7 +9658,7 @@ CodeMirror.fromTextArea = fromTextArea
|
|||||||
|
|
||||||
addLegacyProps(CodeMirror)
|
addLegacyProps(CodeMirror)
|
||||||
|
|
||||||
CodeMirror.version = "5.35.0"
|
CodeMirror.version = "5.37.0"
|
||||||
|
|
||||||
return CodeMirror;
|
return CodeMirror;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user