|
@@ -906,7 +906,14 @@ MWF.xApplication.process.TaskCenter.Process = new Class({
|
|
|
this.application = application;
|
|
this.application = application;
|
|
|
this.applicationData = applicationData;
|
|
this.applicationData = applicationData;
|
|
|
this.app = this.application.app;
|
|
this.app = this.application.app;
|
|
|
- this.starter = this.application.starter
|
|
|
|
|
|
|
+ if( this.application.starter ){
|
|
|
|
|
+ this.starter = this.application.starter;
|
|
|
|
|
+ }else if( this.application.app && this.application.app.starter ){
|
|
|
|
|
+ this.starter = this.application.app.starter;
|
|
|
|
|
+ }else if( this.application.app && this.application.app.processStarter ){
|
|
|
|
|
+ this.starter = this.application.app.processStarter;
|
|
|
|
|
+ }
|
|
|
|
|
+ //this.starter = this.application.starter
|
|
|
this.container = container;
|
|
this.container = container;
|
|
|
this.css = this.app.css;
|
|
this.css = this.app.css;
|
|
|
|
|
|