Skip to content

Commit 227a26d

Browse files
author
Aleksandr Osadchyi
committed
Merge remote-tracking branch 'mainline/develop' into MAGETWO-61725
2 parents 20aaf4c + 0bb4d6c commit 227a26d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

lib/web/css/source/components/_modals.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,17 @@
189189
// If applied, switching outer popup scroll to inner
190190
&._inner-scroll {
191191
overflow-y: visible;
192+
193+
.ie11 &,
192194
.ie10 &,
193195
.ie9 & {
194196
overflow-y: auto;
195197
}
196198

197199
.modal-inner-wrap {
198200
max-height: 90%;
201+
202+
.ie11 &,
199203
.ie10 &,
200204
.ie9 & {
201205
max-height: none;

lib/web/mage/adminhtml/wysiwyg/tiny_mce/setup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,9 @@ define([
329329

330330
encodeDirectives: function(content) {
331331
// collect all HTML tags with attributes that contain directives
332-
return content.gsub(/<([a-z0-9\-\_]+.+?)([a-z0-9\-\_]+=".*?\{\{.+?\}\}.*?".+?)>/i, function(match) {
332+
return content.gsub(/<([a-z0-9\-\_]+.+?)([a-z0-9\-\_]+=".*?\{\{.+?\}\}.*?".*?)>/i, function(match) {
333333
var attributesString = match[2];
334+
334335
// process tag attributes string
335336
attributesString = attributesString.gsub(/([a-z0-9\-\_]+)="(.*?)(\{\{.+?\}\})(.*?)"/i, function(m) {
336337
return m[1] + '="' + m[2] + this.makeDirectiveUrl(Base64.mageEncode(m[3])) + m[4] + '"';

0 commit comments

Comments
 (0)