Update Prototype JS to version 1.7.1

.. and fixed namespace conflict in dtree.js (Node => dtreeNode)
This commit is contained in:
Francis Lachapelle
2012-11-13 16:25:20 -05:00
parent 33bd07a53d
commit 8c96f717c0
7 changed files with 2653 additions and 1699 deletions

View File

@@ -40,13 +40,14 @@ var SOGoResizableTableInterface = {
},
restore: function(relativeWidths) {
if (Prototype.Browser.IE)
while (SOGoResizableTable._stylesheet.styleSheet.rules.length)
SOGoResizableTable._stylesheet.styleSheet.removeRule(0);
else
while (SOGoResizableTable._stylesheet.firstChild)
SOGoResizableTable._stylesheet.removeChild(SOGoResizableTable._stylesheet.firstChild);
if (SOGoResizableTable._stylesheet != null)
if (Prototype.Browser.IE)
while (SOGoResizableTable._stylesheet.styleSheet.rules.length)
SOGoResizableTable._stylesheet.styleSheet.removeRule(0);
else
while (SOGoResizableTable._stylesheet.firstChild)
SOGoResizableTable._stylesheet.removeChild(SOGoResizableTable._stylesheet.firstChild);
if (relativeWidths)
this.ratios = relativeWidths;
var tableWidth = this.getWidth()/100;