Mercurial > lada > lada-client
diff app/view/window/ProbeCreate.js @ 709:6f6d2df00130
Added some CSS to make distinction between active and inactice windows more simple for the user
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Tue, 07 Apr 2015 17:16:59 +0200 |
parents | c632c7c34029 |
children | d9824c49e781 |
line wrap: on
line diff
--- a/app/view/window/ProbeCreate.js Fri Mar 27 15:54:43 2015 +0100 +++ b/app/view/window/ProbeCreate.js Tue Apr 07 17:16:59 2015 +0200 @@ -33,6 +33,17 @@ scope: this, handler: this.close }]; + + // add listeners to change the window appearence when it becomes inactive + this.on({ + activate: function(){ + this.getEl().removeCls('window-inactive'); + }, + deactivate: function(){ + this.getEl().addCls('window-inactive'); + } + }); + this.width = 700; // InitialConfig is the config object passed to the constructor on // creation of this window. We need to pass it throuh to the form as