Skip to content

Commit

Permalink
compiled version 4.9.2-mysw-10
Browse files Browse the repository at this point in the history
  • Loading branch information
dotKev committed Jan 23, 2019
1 parent 44859ae commit 07481b8
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 12 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 4.9.2-mysw-10 (2019-01-23)
Wrapped media embed in some helpful classes
Disabled media embed textarea

Version 4.9.2-mysw-9 (2019-01-04)
Merged core 4.9.2 with mysw changes

Expand Down
4 changes: 3 additions & 1 deletion js/tinymce/plugins/media/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,8 @@ var media = (function () {
value: getSource(editor),
multiline: true,
rows: 5,
label: 'Source'
label: 'Source',
disabled: true
};
var updateValueOnChange = function () {
data = global$2.extend({}, HtmlToData.htmlToData(Settings.getScripts(editor), this.value()));
Expand Down Expand Up @@ -816,6 +817,7 @@ var media = (function () {
data: data,
bodyType: 'tabpanel',
body: body,
classes: 'mysw-video-dialog-wrapper',
onSubmit: function () {
SizeManager.updateSize(win);
submitForm(win, editor);
Expand Down
2 changes: 1 addition & 1 deletion js/tinymce/plugins/media/plugin.min.js

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions js/tinymce/themes/inlite/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -4559,8 +4559,7 @@ var inlite = (function () {
};
var Buttons = { addToEditor: addToEditor };

var getUiContainerDelta$1 = function () {
var uiContainer = global$6.container;
var getUiContainerDelta$1 = function (uiContainer) {
if (uiContainer && global$1.DOM.getStyle(uiContainer, 'position', true) !== 'static') {
var containerPos = global$1.DOM.getPos(uiContainer);
var dx = containerPos.x - uiContainer.scrollLeft;
Expand Down Expand Up @@ -4849,7 +4848,7 @@ var inlite = (function () {
result = Layout.calc(targetRect, contentAreaRect, panelRect);
}
if (result) {
var delta = UiContainer$1.getUiContainerDelta().getOr({
var delta = UiContainer$1.getUiContainerDelta(editor.settings.ui_container).getOr({
x: 0,
y: 0
});
Expand Down
2 changes: 1 addition & 1 deletion js/tinymce/themes/inlite/theme.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/tinymce/tinymce.full.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions js/tinymce/tinymce.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 4.9.2-mysw-9 (2019-01-04)
// 4.9.2-mysw-10 (2019-01-23)
(function () {
(function () {
'use strict';
Expand Down Expand Up @@ -25530,8 +25530,8 @@
defaultSettings: {},
$: DomQuery,
majorVersion: '4',
minorVersion: '9.2-mysw-9',
releaseDate: '2019-01-04',
minorVersion: '9.2-mysw-10',
releaseDate: '2019-01-23',
editors: legacyEditors,
i18n: I18n,
activeEditor: null,
Expand Down
4 changes: 2 additions & 2 deletions js/tinymce/tinymce.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": "tinymce",
"version": "4.9.2-mysw-9",
"version": "4.9.2-mysw-10",
"repository": {
"type": "git",
"url": "https://github.com/tinymce/tinymce.git"
Expand Down

0 comments on commit 07481b8

Please sign in to comment.