[DE] Fix layout for review changes dialog
This commit is contained in:
parent
0175dc8e9d
commit
fe43b16e08
|
@ -969,7 +969,7 @@ define([
|
||||||
|
|
||||||
Common.Views.ReviewChangesDialog = Common.UI.Window.extend(_.extend({
|
Common.Views.ReviewChangesDialog = Common.UI.Window.extend(_.extend({
|
||||||
options: {
|
options: {
|
||||||
width : 283,
|
width : 330,
|
||||||
height : 90,
|
height : 90,
|
||||||
title : 'Review Changes',
|
title : 'Review Changes',
|
||||||
modal : false,
|
modal : false,
|
||||||
|
@ -978,7 +978,9 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
_.extend(this.options, options || {});
|
_.extend(this.options, {
|
||||||
|
title : this.textTitle
|
||||||
|
}, options || {});
|
||||||
|
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box">',
|
'<div class="box">',
|
||||||
|
|
Loading…
Reference in a new issue