mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
Revert "Merge branch 'MDL-52944-master' of git://github.com/cameron1729/moodle"
This reverts commit61a0465ce7
, reversing changes made to2408f8fe2b
.
This commit is contained in:
parent
27cec47220
commit
e92a39cf0c
5 changed files with 19 additions and 19 deletions
|
@ -212,6 +212,11 @@ Y.extend(Editor, Y.Base, {
|
|||
// Disable odd inline CSS styles.
|
||||
this.disableCssStyling();
|
||||
|
||||
// Use paragraphs not divs.
|
||||
if (document.queryCommandSupported('DefaultParagraphSeparator')) {
|
||||
document.execCommand('DefaultParagraphSeparator', false, 'p');
|
||||
}
|
||||
|
||||
// Add the toolbar and editable zone to the page.
|
||||
this.textarea.get('parentNode').insert(this._wrapper, this.textarea).
|
||||
setAttribute('class', 'editor_atto_wrap');
|
||||
|
@ -293,10 +298,6 @@ Y.extend(Editor, Y.Base, {
|
|||
* @chainable
|
||||
*/
|
||||
setupAutomaticPolling: function() {
|
||||
// Force use of <p> tags when pressing enter key
|
||||
this._registerEventHandle(this.editor.on('key', function() {
|
||||
document.execCommand('formatBlock', false, 'p');
|
||||
}, 'press:enter', this));
|
||||
this._registerEventHandle(this.editor.on(['keyup', 'cut'], this.updateOriginal, this));
|
||||
this._registerEventHandle(this.editor.on('paste', this.pasteCleanup, this));
|
||||
|
||||
|
@ -2597,7 +2598,6 @@ Y.Base.mix(Y.M.editor_atto.Editor, [EditorFilepicker]);
|
|||
"overlay",
|
||||
"escape",
|
||||
"event",
|
||||
"event-key",
|
||||
"event-simulate",
|
||||
"event-custom",
|
||||
"node-event-html5",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -210,6 +210,11 @@ Y.extend(Editor, Y.Base, {
|
|||
// Disable odd inline CSS styles.
|
||||
this.disableCssStyling();
|
||||
|
||||
// Use paragraphs not divs.
|
||||
if (document.queryCommandSupported('DefaultParagraphSeparator')) {
|
||||
document.execCommand('DefaultParagraphSeparator', false, 'p');
|
||||
}
|
||||
|
||||
// Add the toolbar and editable zone to the page.
|
||||
this.textarea.get('parentNode').insert(this._wrapper, this.textarea).
|
||||
setAttribute('class', 'editor_atto_wrap');
|
||||
|
@ -291,10 +296,6 @@ Y.extend(Editor, Y.Base, {
|
|||
* @chainable
|
||||
*/
|
||||
setupAutomaticPolling: function() {
|
||||
// Force use of <p> tags when pressing enter key
|
||||
this._registerEventHandle(this.editor.on('key', function() {
|
||||
document.execCommand('formatBlock', false, 'p');
|
||||
}, 'press:enter', this));
|
||||
this._registerEventHandle(this.editor.on(['keyup', 'cut'], this.updateOriginal, this));
|
||||
this._registerEventHandle(this.editor.on('paste', this.pasteCleanup, this));
|
||||
|
||||
|
@ -2584,7 +2585,6 @@ Y.Base.mix(Y.M.editor_atto.Editor, [EditorFilepicker]);
|
|||
"overlay",
|
||||
"escape",
|
||||
"event",
|
||||
"event-key",
|
||||
"event-simulate",
|
||||
"event-custom",
|
||||
"node-event-html5",
|
||||
|
|
9
lib/editor/atto/yui/src/editor/js/editor.js
vendored
9
lib/editor/atto/yui/src/editor/js/editor.js
vendored
|
@ -210,6 +210,11 @@ Y.extend(Editor, Y.Base, {
|
|||
// Disable odd inline CSS styles.
|
||||
this.disableCssStyling();
|
||||
|
||||
// Use paragraphs not divs.
|
||||
if (document.queryCommandSupported('DefaultParagraphSeparator')) {
|
||||
document.execCommand('DefaultParagraphSeparator', false, 'p');
|
||||
}
|
||||
|
||||
// Add the toolbar and editable zone to the page.
|
||||
this.textarea.get('parentNode').insert(this._wrapper, this.textarea).
|
||||
setAttribute('class', 'editor_atto_wrap');
|
||||
|
@ -291,10 +296,6 @@ Y.extend(Editor, Y.Base, {
|
|||
* @chainable
|
||||
*/
|
||||
setupAutomaticPolling: function() {
|
||||
// Force use of <p> tags when pressing enter key
|
||||
this._registerEventHandle(this.editor.on('key', function() {
|
||||
document.execCommand('formatBlock', false, 'p');
|
||||
}, 'press:enter', this));
|
||||
this._registerEventHandle(this.editor.on(['keyup', 'cut'], this.updateOriginal, this));
|
||||
this._registerEventHandle(this.editor.on('paste', this.pasteCleanup, this));
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
"overlay",
|
||||
"escape",
|
||||
"event",
|
||||
"event-key",
|
||||
"event-simulate",
|
||||
"event-custom",
|
||||
"node-event-html5",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue