Skip to content

Commit

Permalink
resolves #184 - set fixed width to modal editor windows
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesMx committed Oct 31, 2018
1 parent a2f30b6 commit 95bce86
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ mxcCore.window.UpdateCat = function(config) {
Ext.applyIf(config,{
title: ''+_('mxcalendars.label_window_create')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 650
,baseParams: {
action: 'mgr/calendar/update'
}
Expand Down Expand Up @@ -169,7 +169,7 @@ mxcCore.window.CreateCal = function(config) {
Ext.applyIf(config,{
title: ''+_('mxcalendars.label_window_create')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 650
,baseParams: {
action: 'mgr/calendar/create'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ mxcCore.window.UpdateCat = function(config) {
Ext.applyIf(config,{
title: ''+_('mxcalendars.label_window_create')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 400
,baseParams: {
action: 'mgr/category/update'
}
Expand Down Expand Up @@ -211,7 +211,7 @@ mxcCore.window.CreateCat = function(config) {
Ext.applyIf(config,{
title: ''+_('mxcalendars.label_window_create')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 400
,baseParams: {
action: 'mgr/category/create'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ mxcCore.window.UpdateFeed = function(config) {
Ext.applyIf(config,{
title: _('mxcalendars.feed_menu_update')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 400
,baseParams: {
action: 'mgr/feed/update'
}
Expand Down Expand Up @@ -217,7 +217,7 @@ mxcCore.window.CreateFeed = function(config) {
Ext.applyIf(config,{
title: _('mxcalendars.feed_btn_create')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 400
,baseParams: {
action: 'mgr/feed/create'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ mxcCore.window.UpdateImage = function(config) {
Ext.applyIf(config,{
title: _('mxcalendars.label_update')+' '+_('mxcalendars.label_select_image')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 650
,baseParams: {
action: 'mgr/images/update'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ mxcCore.window.UpdateVideo = function(config) {
Ext.applyIf(config,{
title: _('mxcalendars.label_update')+' '+_('mxcalendars.label_select_video')
,url: mxcCore.config.connectorUrl
,width: 'auto'
,width: 650
,baseParams: {
action: 'mgr/videos/update'
}
Expand Down

0 comments on commit 95bce86

Please sign in to comment.