From [email protected] on May 27, 2012 02:22:58
I suggest add button "<->" under Width and Heigth fields, which exchange this values.
var width = document.getElementById('width').value;
var height = document.getElementById('height').value;
document.getElementById('width').value = height;
document.getElementById('height').value = width;
Browser remember old input in this fields, and when uploading images with different orientation, for creating thumbnail need manualy swap width and heigth values.
Original issue: http://code.google.com/p/textpattern/issues/detail?id=201
From [email protected] on May 27, 2012 02:22:58
I suggest add button "<->" under Width and Heigth fields, which exchange this values.
var width = document.getElementById('width').value;
var height = document.getElementById('height').value;
document.getElementById('width').value = height;
document.getElementById('height').value = width;
Browser remember old input in this fields, and when uploading images with different orientation, for creating thumbnail need manualy swap width and heigth values.
Original issue: http://code.google.com/p/textpattern/issues/detail?id=201