mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	Increase max messages length
This commit is contained in:
		@@ -144,7 +144,7 @@ const ConvChatWindow = {
 | 
				
			|||||||
			class: "form-control",
 | 
								class: "form-control",
 | 
				
			||||||
			placeholder: tr("New message..."),
 | 
								placeholder: tr("New message..."),
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
		inputText.maxLength = 200;
 | 
							inputText.maxLength = ServerConfig.conf.max_conversation_message_len;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		//Enable textarea 2.0 on the message
 | 
							//Enable textarea 2.0 on the message
 | 
				
			||||||
		var textarea2 = new ComunicWeb.components.textarea();
 | 
							var textarea2 = new ComunicWeb.components.textarea();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -457,7 +457,7 @@ const ConversationPageConvPart = {
 | 
				
			|||||||
			class: "form-control",
 | 
								class: "form-control",
 | 
				
			||||||
			placeholder: "New message...",
 | 
								placeholder: "New message...",
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
		inputText.maxLength = 200;
 | 
							inputText.maxLength = ServerConfig.conf.max_conversation_message_len;
 | 
				
			||||||
		inputText.focus();
 | 
							inputText.focus();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user