Fix opera load issue.

This commit is contained in:
Paulo Gustavo Veiga
2009-12-30 11:06:17 -03:00
parent 6ef4ee9ba3
commit 131d5b18e8
2 changed files with 2 additions and 6 deletions

View File

@@ -3709,7 +3709,6 @@ window.extend({
getWidth: function() {
if (this.webkit419) return this.innerWidth;
if (this.opera) return document.body.clientWidth;
return document.documentElement.clientWidth;
},
@@ -3720,7 +3719,6 @@ window.extend({
getHeight: function() {
if (this.webkit419) return this.innerHeight;
if (this.opera) return document.body.clientHeight;
return document.documentElement.clientHeight;
},
@@ -7170,4 +7168,4 @@ var Accordion = Fx.Elements.extend({
});
Fx.Accordion = Accordion;
Fx.Accordion = Accordion;