1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-22 13:34:04 +03:00

Added further documentation to max width and max height functions

This commit is contained in:
m-khan-glyptodon 2019-01-07 16:34:39 -08:00
parent 42ded5c382
commit cc9cf15c69

View File

@ -1583,7 +1583,12 @@ GuacUI.Client.attach = function(guac) {
/**
* Calculates maximum possible height that can be scrolled. This helps avoid
* the constant increasing value of scrollHeight on ios Safari.
* the constant increasing value of scrollHeight on IOS Safari. The
* continuous increase of height causes a crash on IOS Safari when the
* unnaturally high value of scrollHeight is passed to the scrollTo
* function. Therefore in the case where the scrollHeight parameter exceeds
* the maximum possible height value, the return value of this parameter is
* used instead.
*
* For additional info, visit:
* https://muffinman.io/ios-safari-get-bounding-client-rect-bug/
@ -1602,7 +1607,12 @@ GuacUI.Client.attach = function(guac) {
/**
* Calculates maximum possible width that can be scrolled. This helps avoid
* the constant increasing value of scrollWidth on ios Safari.
* the constant increasing value of scrollWidth on IOS Safari. The
* continuous increase of width causes a crash on IOS Safari when the
* unnaturally high value of scrollWidth is passed to the scrollTo
* function. Therefore in the case where the scrollWidth parameter exceeds
* the maximum possible width value, the return value of this parameter is
* used instead.
*
* For additional info, visit:
* https://muffinman.io/ios-safari-get-bounding-client-rect-bug/