mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
Only specify the width for thumbnails to keep the aspect ratio
Change-Id: I4e55ff719da6cb58f396ad6043e46acaed4a504d
This commit is contained in:
parent
6139398494
commit
6ab017308b
|
@ -90,7 +90,9 @@ WikiLinkHandler.prototype._simpleImageOptions = {
|
||||||
'frameless': 'format',
|
'frameless': 'format',
|
||||||
'frame': 'format',
|
'frame': 'format',
|
||||||
'thumbnail': 'format',
|
'thumbnail': 'format',
|
||||||
'thumb': 'format'
|
'thumb': 'format',
|
||||||
|
// orientation,
|
||||||
|
'upright': 'orientation'
|
||||||
};
|
};
|
||||||
|
|
||||||
WikiLinkHandler.prototype._prefixImageOptions = {
|
WikiLinkHandler.prototype._prefixImageOptions = {
|
||||||
|
@ -211,7 +213,7 @@ WikiLinkHandler.prototype.renderThumb = function ( token, manager, cb, title, pa
|
||||||
a.dataAttribs.optionHash = oHash;
|
a.dataAttribs.optionHash = oHash;
|
||||||
a.dataAttribs.optionList = options;
|
a.dataAttribs.optionList = options;
|
||||||
|
|
||||||
var figurestyle = "width: 125px;",
|
var figurestyle = "width: 165px;",
|
||||||
figureclass = "thumb tright thumbinner";
|
figureclass = "thumb tright thumbinner";
|
||||||
|
|
||||||
// set horizontal alignment
|
// set horizontal alignment
|
||||||
|
@ -256,8 +258,8 @@ WikiLinkHandler.prototype.renderThumb = function ( token, manager, cb, title, pa
|
||||||
'img',
|
'img',
|
||||||
[
|
[
|
||||||
new KV('src', path),
|
new KV('src', path),
|
||||||
new KV('width', '120px'),
|
new KV('width', '160px'),
|
||||||
new KV('height', '120px'),
|
//new KV('height', '160px'),
|
||||||
new KV('class', 'thumbimage'),
|
new KV('class', 'thumbimage'),
|
||||||
new KV('alt', oHash.alt || title.key ),
|
new KV('alt', oHash.alt || title.key ),
|
||||||
new KV('resource', title.getPrefixedText())
|
new KV('resource', title.getPrefixedText())
|
||||||
|
|
Loading…
Reference in a new issue