|
|
@@ -2740,10 +2740,16 @@ o2.xDesktop.Default.Lnk = new Class({
|
|
|
options = {"name": "portal.Portal", "portalId": layout.config.indexPage.portal, "pageId": layout.config.indexPage.page, "appId": appId};
|
|
|
}
|
|
|
layout.openApplication(null, name, options);
|
|
|
- console.log('layout.openApplication', null, name, options);
|
|
|
+ console.log('layout.openApplication', name);
|
|
|
+ if (this.options) {
|
|
|
+ console.log(JSON.stringify(this.options));
|
|
|
+ }
|
|
|
}else{
|
|
|
layout.openApplication(null, this.data.name, this.data.options);
|
|
|
- console.log('layout.openApplication', null, this.data.name, this.data.options);
|
|
|
+ console.log('layout.openApplication', this.data.name);
|
|
|
+ if (this.data.options) {
|
|
|
+ console.log(JSON.stringify(this.data.options));
|
|
|
+ }
|
|
|
}
|
|
|
}.bind(this),
|
|
|
"mouseover": function(){
|