File tree 2 files changed +6
-1
lines changed
mage/adminhtml/wysiwyg/tiny_mce
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 189
189
// If applied, switching outer popup scroll to inner
190
190
& ._inner-scroll {
191
191
overflow-y : visible ;
192
+
193
+ .ie11 & ,
192
194
.ie10 & ,
193
195
.ie9 & {
194
196
overflow-y : auto ;
195
197
}
196
198
197
199
.modal-inner-wrap {
198
200
max-height : 90% ;
201
+
202
+ .ie11 & ,
199
203
.ie10 & ,
200
204
.ie9 & {
201
205
max-height : none ;
Original file line number Diff line number Diff line change @@ -329,8 +329,9 @@ define([
329
329
330
330
encodeDirectives : function ( content ) {
331
331
// collect all HTML tags with attributes that contain directives
332
- return content . gsub ( / < ( [ a - z 0 - 9 \- \_ ] + .+ ?) ( [ a - z 0 - 9 \- \_ ] + = " .* ?\{ \{ .+ ?\} \} .* ?" .+ ?) > / i, function ( match ) {
332
+ return content . gsub ( / < ( [ a - z 0 - 9 \- \_ ] + .+ ?) ( [ a - z 0 - 9 \- \_ ] + = " .* ?\{ \{ .+ ?\} \} .* ?" .* ?) > / i, function ( match ) {
333
333
var attributesString = match [ 2 ] ;
334
+
334
335
// process tag attributes string
335
336
attributesString = attributesString . gsub ( / ( [ a - z 0 - 9 \- \_ ] + ) = " ( .* ?) ( \{ \{ .+ ?\} \} ) ( .* ?) " / i, function ( m ) {
336
337
return m [ 1 ] + '="' + m [ 2 ] + this . makeDirectiveUrl ( Base64 . mageEncode ( m [ 3 ] ) ) + m [ 4 ] + '"' ;
You can’t perform that action at this time.
0 commit comments