bas_denis
16 Apr 2009, 5:40 PM
maybe some are fixed
maybe some not
those are of the downloadable 3.0 RC1 version
line 3938 all-debug
hash = {t:"top", l:"left", r:"right", b: "bottom"};
should be
hash = {t:"top", l:"left", r:"right", b: "bottom"},
line 4376 all-debug
if (v = hash[direction]) {
should be
for sure something else (v isn't set and get's global)
line 5776 all-debug
line 5916 core-debug
responseXML = doc.XMLDocument || doc;
should be (as i think)
r.responseXML = doc.XMLDocument || doc;
line 6506 all-debug
"return v;",
should be
"return v;"
line 37444 all-debug
ev = Ext.EventObject.setEvent(e);
should be
var ev = Ext.EventObject.setEvent(e);
hope it helps, kind regards
maybe some not
those are of the downloadable 3.0 RC1 version
line 3938 all-debug
hash = {t:"top", l:"left", r:"right", b: "bottom"};
should be
hash = {t:"top", l:"left", r:"right", b: "bottom"},
line 4376 all-debug
if (v = hash[direction]) {
should be
for sure something else (v isn't set and get's global)
line 5776 all-debug
line 5916 core-debug
responseXML = doc.XMLDocument || doc;
should be (as i think)
r.responseXML = doc.XMLDocument || doc;
line 6506 all-debug
"return v;",
should be
"return v;"
line 37444 all-debug
ev = Ext.EventObject.setEvent(e);
should be
var ev = Ext.EventObject.setEvent(e);
hope it helps, kind regards