Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce0066b

Browse files
committed
[CHG]修复插入loding大小写不一致问题
1 parent 51c2299 commit ce0066b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ezuikit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,12 @@
221221
document.getElementsByTagName("head")[0].appendChild(oS);
222222
oS.innerHTML= '@keyframes antRotate {to {transform: rotate(400deg);transform-origin:50% 50%;}} .loading {display: inline-block;z-index: 1000;-webkit-animation: antRotate 1s infinite linear;animation: antRotate 1s infinite linear;}';
223223
/**DOM 操作方法 */
224-
function insertAfter( newELement, targetElement ){
224+
function insertAfter( newElement, targetElement ){
225225
var parent = targetElement.parentNode;
226226
if( parent.lastChild == targetElement ){
227227
parent.appendChild( newElement );
228228
}else{
229-
parent.insertBefore( newELement, targetElement.nextSibling );
229+
parent.insertBefore( newElement, targetElement.nextSibling );
230230
}
231231
}
232232
if(playParams && playParams.id){

0 commit comments

Comments
 (0)