fixed "object not found" error in ie6 (somehow Observable is not applied to sitetree at window-load)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@48840 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2008-01-30 05:29:14 +00:00
parent a4630b1736
commit c89d0dc981
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ var checkedListField = 'selected';
var checkedArray = null;
Event.observe( window, 'load', function() {
if($('sitetree')) {
if(typeof $('sitetree').observeMethod != 'undefined') {
$('sitetree').observeMethod( 'NodeClicked' , function() {
checkedListNameArray = null;
checkedArray = null;