BUGFIX Fixed "undefined element" js error in FieldEditor.js

This commit is contained in:
Ingo Schommer 2008-12-15 03:10:04 +00:00
parent 197df65f2b
commit facc1d865f
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ FieldEditorField.prototype = {
initialize: function() {
var fieldInfoDiv = this.findDescendant( 'div', 'FieldInfo' );
this.titleField = this.findDescendant( 'input', 'text', element );
this.titleField = this.findDescendant( 'input', 'text');
this.titleField.onchange = this.changeTitle.bind(this);
this.titleField.onblur = this.changeTitle.bind(this);