We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 227cae5 commit 976fd20Copy full SHA for 976fd20
mfr/extensions/image/templates/viewer.mako
@@ -103,7 +103,11 @@
103
## issue mentioned below.
104
## 2. Images are displayed in its actual size. No issue for all supported
105
## browsers.
106
- baseImage.wrap("<div></div>").parent().css("display", "inline-block");
+ baseImage.wrap("<div></div>").parent().css({
107
+ "display": "inline-block",
108
+ "max-width": "100%", // need to be explicit for IE
109
+ "height": "auto" // need to be explicit for IE
110
+ });
111
} else {
112
## Quirks: Chrome has a flickering bug when images are wrapped with `<div>` or
113
## `<span>`. During zoom the scroll bar keeps appearing and disappearing which
0 commit comments