Decrease error modal size
This commit is contained in:
parent
ea5bae3f74
commit
c0dd4b2de0
1 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ $(function() {
|
||||||
.modal({
|
.modal({
|
||||||
title : text.modal_failure_title,
|
title : text.modal_failure_title,
|
||||||
content : content,
|
content : content,
|
||||||
class : '',
|
class : 'small',
|
||||||
actions : [
|
actions : [
|
||||||
{
|
{
|
||||||
text : text.modal_failure_approve,
|
text : text.modal_failure_approve,
|
||||||
|
@ -82,7 +82,7 @@ $(function() {
|
||||||
.modal({
|
.modal({
|
||||||
title : text.modal_error_title,
|
title : text.modal_error_title,
|
||||||
content : response,
|
content : response,
|
||||||
class : '',
|
class : 'small',
|
||||||
actions : [
|
actions : [
|
||||||
{
|
{
|
||||||
text : text.modal_failure_approve,
|
text : text.modal_failure_approve,
|
||||||
|
@ -252,7 +252,7 @@ function showError(error) {
|
||||||
.modal({
|
.modal({
|
||||||
title : 'Error',
|
title : 'Error',
|
||||||
content : error,
|
content : error,
|
||||||
class : '',
|
class : 'small',
|
||||||
actions : [
|
actions : [
|
||||||
{
|
{
|
||||||
text : text.modal_failure_approve,
|
text : text.modal_failure_approve,
|
||||||
|
@ -271,7 +271,7 @@ function showWarning(warning) {
|
||||||
.modal({
|
.modal({
|
||||||
title : 'Warning',
|
title : 'Warning',
|
||||||
content : warning,
|
content : warning,
|
||||||
class : '',
|
class : 'small',
|
||||||
actions : [
|
actions : [
|
||||||
{
|
{
|
||||||
text : text.modal_warning_approve,
|
text : text.modal_warning_approve,
|
||||||
|
|
Loading…
Reference in a new issue