@@ -369,15 +369,6 @@ class ComponentLine {
369
369
}
370
370
371
371
class ComponentPlane {
372
- _loadingSvg = `<svg version="1.1" style='width: 100%;height:100px' xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
373
- width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
374
- <path opacity="0.2" fill="#000" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946
375
- s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634
376
- c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"/>
377
- <path fill="#000" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0
378
- C22.32,8.481,24.301,9.057,26.013,10.047z"><animateTransform attributeType="xml"attributeName="transform"
379
- type="rotate"from="0 20 20"to="360 20 20"dur="0.5s"repeatCount="indefinite"/></path></svg>` ;
380
-
381
372
constructor ( url , xhr_url = '' , method = 'POST' , callback = null , options = { } ) {
382
373
this . URL = url ;
383
374
this . XHR_URL = xhr_url ;
@@ -483,7 +474,14 @@ class ComponentPlane {
483
474
}
484
475
this . LOADING_DOM = document . createElement ( 'div' ) ;
485
476
this . LOADING_DOM . style = 'width: 100%;height: 100px;' ;
486
- this . LOADING_DOM . insertAdjacentHTML ( 'afterbegin' , this . _loadingSvg ) ;
477
+ this . LOADING_DOM . insertAdjacentHTML ( 'afterbegin' , `<svg version="1.1" style='width: 100%;height:100px' xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
478
+ width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
479
+ <path opacity="0.2" fill="#000" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946
480
+ s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634
481
+ c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"/>
482
+ <path fill="#000" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0
483
+ C22.32,8.481,24.301,9.057,26.013,10.047z"><animateTransform attributeType="xml"attributeName="transform"
484
+ type="rotate"from="0 20 20"to="360 20 20"dur="0.5s"repeatCount="indefinite"/></path></svg>` ) ;
487
485
let firstChild = this . MODEL_BODY_DOM . childNodes [ 0 ] ;
488
486
if ( firstChild instanceof HTMLElement ) {
489
487
this . MODEL_BODY_DOM . insertBefore ( loading , firstChild ) ;
0 commit comments