Bug #23332 » 15324.diff
typo3/js/tree.js 2010-08-02 12:13:52.000000000 +0200 | ||
---|---|---|
Element.cleanWhitespace(pm);
|
||
pm.firstChild.src = pm.firstChild.src.replace('minus', 'plus');
|
||
}
|
||
this.ieRedrawTree();
|
||
} else {
|
||
obj.style.cursor = 'wait';
|
||
}
|
||
... | ... | |
$(obj.parentNode.parentNode).replace(xhr.responseText);
|
||
this.registerDragDropHandlers();
|
||
this.reSelectActiveItem();
|
||
if(isExpand) {
|
||
this.ieRedrawTree();
|
||
}
|
||
filter($('_livesearch').value);
|
||
}.bind(this),
|
||
onT3Error: function(xhr) {
|
||
... | ... | |
});
|
||
},
|
||
//force ie6 to redraw the tree and fix icon positions
|
||
ieRedrawTree: function() {
|
||
var body = $(document.body);
|
||
if(body.hasClassName('ext-ie6') || body.hasClassName('ext-ie7')) {
|
||
var treeRoot = document.getElementById('treeRoot');
|
||
treeRoot.className = treeRoot.className;
|
||
}
|
||
},
|
||
// does the complete page refresh (previously known as "_refresh_nav()")
|
||
refresh: function() {
|
||
var r = new Date();
|
- « Previous
- 1
- 2
- 3
- Next »