Lines Matching refs:status

661 					var status = document.createElement('div');
662 status.style.position = 'absolute';
663 status.style.whiteSpace = 'nowrap';
664 status.style.background = '#4B4243';
665 status.style.color = 'white';
666 status.style.fontFamily = Editor.defaultHtmlFont;
667 status.style.fontSize = '9pt';
668 status.style.padding = '6px';
669 status.style.paddingLeft = '10px';
670 status.style.paddingRight = '10px';
671 status.style.zIndex = 2e9;
672 status.style.left = Math.max(0, x) + 'px';
673 status.style.top = Math.max(0, y + 70) + 'px';
675 mxUtils.setPrefixedStyle(status.style, 'borderRadius', '6px');
676 mxUtils.setPrefixedStyle(status.style, 'transform', 'translate(-50%,-50%)');
680 mxUtils.setPrefixedStyle(status.style, 'boxShadow', '2px 2px 3px 0px #ddd');
689 status.innerHTML = label;
690 container.appendChild(status);
691 spinner.status = status;
726 if (spinner.status != null && spinner.status.parentNode != null)
728 spinner.status.parentNode.removeChild(spinner.status);
731 spinner.status = null;
3571 if (xhr.status >= 200 && xhr.status <= 299)
3577 this.handleError({message: mxResources.get((xhr.status == 413) ?
3927 if (e.code == 404 || e.status == 404 || e.code == 403)
3958 e.code == 404 || e.status == 404))
7265 if (xhr.status >= 200 && xhr.status <= 299)
7717 if (this.status >= 200 && this.status < 300)
7826 if (xhr.readyState == 4 && xhr.status >= 200 && xhr.status <= 299)
11211 if (xhr.status >= 200 && xhr.status <= 299)
11217 this.handleError({message: mxResources.get((xhr.status == 413) ?
12667 if (xhr.readyState == 4 && xhr.status >= 200 && xhr.status <= 299 &&
14074 var status = document.createElement('div');
14075 status.style.padding = '8px';
14076 status.style.textAlign = 'center';
14077 mxUtils.write(status, mxResources.get('error') + ': ');
14078 mxUtils.write(status, (e != null && e.message != null) ?
14080 libsSection.appendChild(status);