AndyB
Well-known member
It would be a nice feature in the Admin Control Panel to be able to disable the Image Resizing feature. This is the feature that allows a user to click on an image to see the full size.
The main reason I dislike this feature is that it interferes with tablets use. On a tablet like the iPad when you scroll the page, often one will inadvertently invoke the Image Resize as they scroll. I have found that the Image Resize is seldom used and the tooltip that pops up when you hover your mouse over an image is distracting.
Here are instructions for those that would like to disable Image Resize on their forum:
Edit the following file:
js/xenforo/full/xenforo.js
Line 5192
Note to use the full javascript code you need to follow the instructions here:
http://xenforo.com/community/threads/how-to-run-uncompressed-javascript-files.62123/
The main reason I dislike this feature is that it interferes with tablets use. On a tablet like the iPad when you scroll the page, often one will inadvertently invoke the Image Resize as they scroll. I have found that the Image Resize is seldom used and the tooltip that pops up when you hover your mouse over an image is distracting.
Here are instructions for those that would like to disable Image Resize on their forum:
Edit the following file:
js/xenforo/full/xenforo.js
Line 5192
PHP:
XenForo.BbCodeImage = function($image) { this.__construct($image); };
XenForo.BbCodeImage.prototype =
{
__construct: function($image)
{
/* added by andy - add return to disable resizing */
return
...
Note to use the full javascript code you need to follow the instructions here:
http://xenforo.com/community/threads/how-to-run-uncompressed-javascript-files.62123/
Upvote
2