* jQuery: update to version 1.10.2 to improve IE10 experience

This commit is contained in:
Ralf Becker 2013-10-31 12:11:29 +00:00
parent d25f9dce25
commit e90143da6f
3 changed files with 14982 additions and 791 deletions

View File

@ -217,18 +217,18 @@ egwGridViewOuter.prototype.updateColumns = function(_columns)
// Ugly browser dependant code - each browser seems to treat the
// right (collapsed) border of the row differently
addBorder = 0;
if ($j.browser.mozilla)
{
var maj = $j.browser.version.split(".")[0];
if (maj < 2) {
addBorder = 1; // Versions <= FF 3.6
}
}
if ($j.browser.webkit && !first)
//if ($j.browser.mozilla)
//{
// var maj = $j.browser.version.split(".")[0];
// if (maj < 2) {
// addBorder = 1; // Versions <= FF 3.6
// }
//}
if (/*$j.browser.webkit &&*/ !first)
{
addBorder = 1;
}
if (($j.browser.msie || $j.browser.opera) && first)
if (/*($j.browser.msie || $j.browser.opera) &&*/ first)
{
addBorder = -1;
}
@ -685,7 +685,7 @@ egwGridViewContainer.prototype.setPosition = function(_top)
* of the mostly called functions in the whole grid code and should stay
* quite fast.
*/
if ($j.browser.mozilla)
if (navigator.userAgent.match(/Mozilla /) && !navigator.userAgent.match(/WebKit /))
{
egwGridViewContainer.prototype.getHeight = function(_update)
{

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long