-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #3151 Update NodeJS in ProboCI and Lando configs to version 20…
…, rebuild transpiled JS files. (#3152) Co-authored-by: Joe Parsons <[email protected]>
- Loading branch information
1 parent
9514af6
commit 1b7412c
Showing
6 changed files
with
19 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,19 @@ | ||
/** | ||
* DO NOT EDIT THIS FILE. | ||
* See the following change record for more information, | ||
* https://www.drupal.org/node/2815083 | ||
* @preserve | ||
**/ | ||
* DO NOT EDIT THIS FILE. | ||
* See the following change record for more information, | ||
* https://www.drupal.org/node/2815083 | ||
* @preserve | ||
**/ | ||
(function (Drupal) { | ||
var Z_INDEX = 1261; | ||
var TOP_POSITION = '48.5%'; | ||
var LEFT_POSITION = '49%'; | ||
var SPINNER_SIZE = '3rem'; | ||
var spinnerPositionClass = 'js-az-spinner-position'; | ||
var style = document.createElement('style'); | ||
style.textContent = '\n .' | ||
.concat(spinnerPositionClass, ' {\n position: fixed;\n z-index: ') | ||
.concat(Z_INDEX, ';\n top: ') | ||
.concat(TOP_POSITION, ';\n left: ') | ||
.concat(LEFT_POSITION, ';\n }\n '); | ||
style.textContent = "\n .".concat(spinnerPositionClass, " {\n position: fixed;\n z-index: ").concat(Z_INDEX, ";\n top: ").concat(TOP_POSITION, ";\n left: ").concat(LEFT_POSITION, ";\n }\n "); | ||
document.head.appendChild(style); | ||
Drupal.theme.ajaxProgressIndicatorFullscreen = function () { | ||
return '\n <div class="' | ||
.concat( | ||
spinnerPositionClass, | ||
'">\n <div class="spinner-border text-info" style="width: ', | ||
) | ||
.concat(SPINNER_SIZE, '; height: ') | ||
.concat( | ||
SPINNER_SIZE, | ||
';" role="status">\n <span class="sr-only">Loading...</span>\n </div>\n </div>', | ||
); | ||
return "\n <div class=\"".concat(spinnerPositionClass, "\">\n <div class=\"spinner-border text-info\" style=\"width: ").concat(SPINNER_SIZE, "; height: ").concat(SPINNER_SIZE, ";\" role=\"status\">\n <span class=\"sr-only\">Loading...</span>\n </div>\n </div>"); | ||
}; | ||
})(Drupal); | ||
})(Drupal); |