@@ -18,7 +18,7 @@ module.exports = Mn.View.extend({
18
18
form : 'form' ,
19
19
loader_content : '.loader-content' ,
20
20
non_loader_content : '.non-loader-content' ,
21
- error_info : '# error-info',
21
+ le_error_info : '#le- error-info',
22
22
domain_names : 'input[name="domain_names"]' ,
23
23
buttons : '.modal-footer button' ,
24
24
cancel : 'button.cancel' ,
@@ -68,7 +68,7 @@ module.exports = Mn.View.extend({
68
68
69
69
'click @ui.save' : function ( e ) {
70
70
e . preventDefault ( ) ;
71
- this . ui . error_info . hide ( ) ;
71
+ this . ui . le_error_info . hide ( ) ;
72
72
73
73
if ( ! this . ui . form [ 0 ] . checkValidity ( ) ) {
74
74
$ ( '<input type="submit">' ) . hide ( ) . appendTo ( this . ui . form ) . click ( ) . remove ( ) ;
@@ -189,11 +189,11 @@ module.exports = Mn.View.extend({
189
189
. catch ( err => {
190
190
try {
191
191
const error_message = JSON . parse ( err . debug ) . debug . stack . join ( "\n" ) ;
192
- this . ui . error_info [ 0 ] . innerHTML = `<p>${ err . message } </p><pre>${ error_message } </pre>` ;
192
+ this . ui . le_error_info [ 0 ] . innerHTML = `<p>${ err . message } </p><pre>${ error_message } </pre>` ;
193
193
} catch ( e ) {
194
- this . ui . error_info [ 0 ] . innerHTML = `<p>${ err . message } </p>` ;
194
+ this . ui . le_error_info [ 0 ] . innerHTML = `<p>${ err . message } </p>` ;
195
195
}
196
- this . ui . error_info . show ( ) ;
196
+ this . ui . le_error_info . show ( ) ;
197
197
this . ui . le_error_info [ 0 ] . scrollIntoView ( ) ;
198
198
this . ui . loader_content . hide ( ) ;
199
199
this . ui . non_loader_content . show ( ) ;
@@ -250,7 +250,7 @@ module.exports = Mn.View.extend({
250
250
this . ui . dns_challenge_content . hide ( ) ;
251
251
this . ui . credentials_file_content . hide ( ) ;
252
252
this . ui . loader_content . hide ( ) ;
253
- this . ui . error_info . hide ( ) ;
253
+ this . ui . le_error_info . hide ( ) ;
254
254
} ,
255
255
256
256
initialize : function ( options ) {
0 commit comments