Fix bug in setHidden where Item#visible was being interpreted as a bean.

This commit is contained in:
Jonathan Puckey 2011-03-06 14:50:57 +01:00
parent 5507482d8f
commit 336c9e1441

View file

@ -117,7 +117,7 @@ var Item = this.Item = Base.extend({
},
setHidden: function(hidden) {
this.setVisible(!hidden);
this.visible = !hidden;
},
/**