Mercurial > lada > lada-client
comparison app/view/widget/base/FieldSet.js @ 1201:26019a2273f6
Display of probe forms failed due to getEl() returning undefined
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 28 Sep 2016 15:22:33 +0200 |
parents | 47991f0d7837 |
children | c8827424723b |
comparison
equal
deleted
inserted
replaced
1200:e9efd2edb50f | 1201:26019a2273f6 |
---|---|
71 } | 71 } |
72 }, | 72 }, |
73 | 73 |
74 clearMessages: function() { | 74 clearMessages: function() { |
75 this.setTitle(this.plainTitle); | 75 this.setTitle(this.plainTitle); |
76 this.getEl().dom.style['border-color'] = this.origColor; | 76 if (this.getEl()) { |
77 this.getEl().dom.style['border-color'] = this.origColor; | |
78 } | |
77 } | 79 } |
78 }); | 80 }); |