BUG 7095 Adjustment in the text of the modals windows in tasks options.
This commit is contained in:
@@ -1375,7 +1375,7 @@ var processmap=function(){
|
||||
limit:true,
|
||||
size:{w:670,h:410},
|
||||
position:{x:50,y:50,center:true},
|
||||
title: G_STRINGS.ID_PROCESSMAP_TASK_STEPS+" "+data.label,
|
||||
title: G_STRINGS.ID_PROCESSMAP_TASK_STEPS+" "+data.label.substr(0,82) + (data.label.length>=82 ? "..." : "") ,
|
||||
theme:this.options.theme,
|
||||
statusBar:false,
|
||||
control:{
|
||||
@@ -1414,7 +1414,7 @@ var processmap=function(){
|
||||
limit :true,
|
||||
size :{w:450,h:300},
|
||||
position:{x:50,y:50,center:true},
|
||||
title :G_STRINGS.ID_PROCESSMAP_USERS_AND_GROUPS+": "+task.label,
|
||||
title :G_STRINGS.ID_PROCESSMAP_USERS_AND_GROUPS+": "+task.label.substr(0,30) + (task.label.length>=30 ? "..." : "") ,
|
||||
theme :this.options.theme,
|
||||
control :{close:true,resize:false},fx:{modal:true},
|
||||
statusBar:false,
|
||||
@@ -1452,7 +1452,7 @@ var processmap=function(){
|
||||
limit :true,
|
||||
size :{w:450,h:300},
|
||||
position:{x:50,y:50,center:true},
|
||||
title :G_STRINGS.ID_PROCESSMAP_USERS_AND_GROUPS_ADHOC+": "+task.label,
|
||||
title :G_STRINGS.ID_PROCESSMAP_USERS_AND_GROUPS_ADHOC+": "+task.label.substr(0,27) + (task.label.length>=27 ? "..." : "") ,
|
||||
theme :this.options.theme,
|
||||
control :{close:true,resize:false},fx:{modal:true},
|
||||
statusBar:false,
|
||||
@@ -1565,7 +1565,7 @@ var processmap=function(){
|
||||
limit:true,
|
||||
size:{w:600,h:430},
|
||||
position:{x:50,y:50,center:true},
|
||||
title:G_STRINGS.ID_PROCESSMAP_TASK+": "+data.label,
|
||||
title:G_STRINGS.ID_PROCESSMAP_TASK+": "+data.label.substr(0,75) + (data.label.length>=75 ? "..." : "") ,
|
||||
theme:this.options.theme,
|
||||
statusBar:true,
|
||||
statusBarButtons:[
|
||||
|
||||
Reference in New Issue
Block a user